-
Notifications
You must be signed in to change notification settings - Fork 238
/
example.html
70 lines (67 loc) · 2.07 KB
/
example.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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circle Coding Academy</title>
<link rel="stylesheet" href="./example.css">
</head>
<body>
<div class="container">
<nav>
<ul class="navcontainer">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="https://www.linkedin.com/school/3788765/">LinkedIn</a>
</li>
<li>
<a href="https://www.facebook.com/AustinCodingAcademy/">Facebook</a>
</li>
</ul>
</nav>
<header>
<h1>Austin Coding Academy</h1>
<img src="./exampleportrait.png" alt="Logo of Coding Academy">
</header>
<main>
<h2>Your Source of Talent and Education</h2>
<h3>Keep Your Day Job While You Make a Career Change</h3>
<p>
In-person, part-time classes meet twice a week in the evenings, so learning to code fits your schedule
</p>
<p>
Project-based, flipped classroom gives you real-world practice
</p>
<p>
Unlimited tutoring gives you the option to book one-on-one help as you need it
</p>
<h3>We Work with Our Students to Make Tuition Manageable</h3>
<p>
Pay course-by-course or for the entire program
</p>
<p>
Finance your tuition through Skills Fund, our primary financing partner
</p>
<p>
Talk with our admissions team about tuition options
</p>
<h3>You’ll Learn Skills That Will Get You a Job</h3>
<p>
Learn from instructors who are professional web developers and work with what they’re teaching you,
every
day
</p>
<p>
Build portfolio projects as you learn the skills for which Austin companies are hiring
</p>
<p>
Practice technical interviews, build your resume, and get expert feedback and more in our Job Placement
Course
</p>
</main>
<footer>
Email me at <a href="mailto:[email protected]">[email protected]</a>
</footer>
</div>
</body>
</html>