-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (111 loc) · 4.55 KB
/
Copy pathindex.html
File metadata and controls
118 lines (111 loc) · 4.55 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Coding Temple</title>
<link href="main.css" rel="stylesheet" />
</head>
<body>
<header class="container">
<div class="row">
<div class= "col1">
<img src="logo.png" alt="Coding Temple" title ="Coding Temple" />
</div>
<div>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="courses.html">Courses</a>
</li>
<li>
<a href="students.html">Students</a>
</li>
<li class="alt-link">
<a href="apply.html">Apply Now</a>
</li>
</ul>
</nav>
</div>
</div>
</header>
<section class="container">
<article class="row2">
<div class="col3 center">
<img src="classes.png" alt="classes" title="classes"/>
</div>
<div class="col3">
<h2>Classes</h2>
<p>
Coding Temple offers classes at our two campuses located in Schaumburg, and Chicago. Currently we offer full and part-time classes. Our next classes start January 4th, 2016.
<a href="apply.html">Start your application...</a>
</p>
</div>
</article>
</section>
<section class="container">
<article class="row2">
<div class="col3">
<h2>Course Curriculum</h2>
<p>
Technologies covered: JavaScript, C#, ASP.NET MVC, Entity Framework, HTML/CSS, SQL, Git, and more! We will also teach you how to learn as our goal is to make you adaptable to other similar technologies and future technologies.
<a href="courses.html">View the Curriculum...</a>
</p>
</div>
<div class="col3">
<img src="curriculum.png" alt="curriculum" title="curriculum"/>
</div>
</article>
</section>
<section class="container">
<article class="row2">
<div class="col3">
<img src="students.png" alt="students" title="students"/>
</div>
<div class="col3">
<h2>Current Students</h2>
<p>
Our current cohort consists of students from various backgrounds and knowledge about the IT industry.
<a href="students.html">View more on our students...</a>
</p>
</div>
</article>
</section>
<footer class="container">
<div class="row">
<div class="col2">
<img src="logo_small.png" alt="small" title="Logo Small"/>
<p style="color: white">
The skills and experience that students achieve at Coding Temple takes them a long way. We offer small
classes, so students are able to have a more one on one interaction with our teachers. Our curriculum is designed to make students feel confident and be successful in the workforce once they have completed our course.
</p>
</div>
<div class="col2">
<h3>Quick Links</h3>
<ul>
<li>
<a href="index.html"> • Home</a>
</li>
<li>
<a href="courses.html"> • Courses</a>
</li>
<li>
<a href="students.html"> • Students</a>
</li>
<li>
<a href="apply.html"> • Apply Now</a>
</li>
</ul>
</div>
<div class="col2">
<aside>
<h3>332 S Michigan</h3>
<h3>9th Floor</h3>
<h3>Chicago, IL 60604</h3>
</aside>
</div>
</div>
</footer>
</body>
</html>