-
Notifications
You must be signed in to change notification settings - Fork 0
/
tracks.html
128 lines (118 loc) · 5.01 KB
/
tracks.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!-- Sriram Kalki, Tracks Page (last updated: 7/18/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="wih3h=device-wih3h, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JCCC Web Dev and Digital Media: Tracks</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>
<!-- Navigation Element -->
<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="trackshero">
</div>
<main>
<!-- Main's Header -->
<h2>JCCC's Web Development and Digital Media Program has Four Different Tracks to Choose From</h2>
<div class="flow">
<section>
<h3><strong>Web Development and Digital Media, AAS</strong></h3>
<p>
In just four semesters, you'll take various Web Development and Digital Media courses.
Upon completing 63 credit hours, you will graduate with an
<br>
Associate of Applied Science degree in Web Development and Digital Media.
</p>
</section>
<section>
<h3><strong>Digital Media Certificate</strong></h3>
<p>
Learn web scripting, HTML, web analytics and SEO through JCCC's Digital Media certificate.
You will also gain experience in visual storytelling
<br>
and digital media assets.
</p>
</section>
<section>
<h3><strong>Web Development Certificate</strong></h3>
<p>Gain valuable technical interface skills, server scripting,
CSS techniques and more through our Web Development certificate.
</p>
</section>
<section>
<h3><strong>Web Technologies Certificate</strong></h3>
<p>
By completing 16 credits in six courses, you'll earn the Web Technologies certificate and learn valuable skills in HTML,
web scripting, digital
<br>
workflow and digital media concepts.
</p>
</section>
</div>
</main>
<br>
<h3>Web Technologies Certificate</h3>
<p>The Web Development and Digital Media certificates allow you to either move into the workforce after earning a single certificate,
or continue to build your skills and earn additional certificates, and ultimately an Associate of Applied Science degree in Web Development and Digital Media.
Each certificate/degree builds on top of a prior, starting with the Web Technologies Certificate.
Here is a look at the courses in the Web Technologies Certificate, JCCC's equivalent of a web development bootcamp.
</p>
<br>
<table>
<tr>
<th>Course Abbreviation</th>
<th>Course Title</th>
<th>Credit Hours</th>
</tr>
<tr>
<td>WEB 110</td>
<td class="text">HTML and CSS</td>
<td>3</td>
</tr>
<tr>
<td>WEB 112</td>
<td class="text">Professional Skills for the Digital Developer</td>
<td>3</td>
</tr>
<tr>
<td>WEB 114</td>
<td class="text">Web Scripting: JavaScript I*</td>
<td>2</td>
</tr>
<tr>
<td>WEB 116</td>
<td class="text">Digital Media Concepts</td>
<td>2</td>
</tr>
<tr>
<td>WEB 118</td>
<td class="text">Digital Workflow</td>
<td>3</td>
</tr>
<tr>
<td>IT 120</td>
<td class="text">Comp TIA A+ Practical Applications</td>
<td>3</td>
</tr>
</table>
</div>
</body>
</html>