-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (89 loc) · 4.49 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!-- Sriram Kalki, Home Page (last updated: 7/27/22) -->
<!-- This code is for display purposes only. If you are using this for purposes against the JCCC honor code,
please understand that this is the custom final product,
and I made obvious changes in the code (in other words this isn't the exact final product-
it's easy to spot the differences)!
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JCCC Web Dev and Digital Media Courses</title>
<link rel="stylesheet" href="./web.css">
</head>
<body>
<div id="wrapper">
<!-- Visible Title -->
<header><h1><a href="index.html">JCCC Web Development and Digital Media</a></h1></header>
<!-- Navgation -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tracks.html">Tracks</a></li>
<li><a href="faculty.html">Faculty</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div id="homehero">
</div>
<main>
<!-- Main's Header -->
<h2>What Will I Learn in JCCC's Web Development and Digital Media Program?</h2>
<!-- First Paragraph -->
<p>
Start a conversation or tell a story using the language of technology. With just a few semesters of study,
you'll gain a deeper understanding of digital workflow, web applications, web development and content management —
and be ready to launch your new career in <span class="web"><strong>web development and digital media</strong></span>.
</p>
<!-- Second Paragraph -->
<p>
Work in both Windows and Mac FAKE to build your toolbox.
Start with the basics of HTML, SUBMISSION CSS and JavaScript.
Move on to web scripting for front-end and back-end design and development using PHP, UX, UI, Bootstrap, jQuery and React.
Get experience building in WordPress and Drupal content management systems.
</p>
<!-- Third Paragraph -->
<p>
In our <span class="web"><strong>Development and Digital Media courses</strong></span>, you'll learn:
<!-- Unordered List -->
<ul>
<li>Digital media concepts</li>
<li>Digital workflow</li>
<li>Web analytics</li>
<li>Visual storytelling</li>
<li>Search engine optimization (SEO)</li>
<li>User experience</li>
<li>Content and digital asset creation</li>
<li>Emerging technologies</li>
<li>Web scripting</li>
</ul>
</p>
<h2>Resources and Tools for JCCC students</h2>
<h3>CSIT Reverse Career Fair</h3>
<iframe src="https://www.youtube.com/embed/VOaMgLqZ6mc" frameborder="0" title="YouTube video player" width="320" height="240"></iframe>
<p>Johnson County Community College's CSIT programs hold a "reverse career fair" every semester.
A reverse career fair differs from a fake submission traditional career fair in that, instead of employers setting up displays of their organizations at booths for students to approach,
the students were at the tables marketing themselves to recruiters. This format makes the students the stars of the show.
Students from the programs such as: web, game, computer science, health information systems, networking and cybersecurity,
and computer support presented polished résumés and projects to potential employers.
In addition to asking about prospective employment opportunities, students inquired about company culture, skills needed for success and more.
</p>
<!-- Contact Div -->
<div id="contact">
<br>
Johnson County Community College
<br>
12345 College Blvd
<br>
Overland Park, KS 66210
<br>
913-469-8500
<br>
</div>
<!-- Copyright Footer -->
</main>
</div>
</body>
</html>