generated from irm1005-itec1005-fall-2023/template-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal-exam.html
205 lines (151 loc) · 6 KB
/
final-exam.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en-ca">
<head>
<!-- Set the page title -->
<title>Final Exam</title>
<!-- Set the charset we're using to UTF-8 -->
<meta charset="utf-8" />
<!-- Set the screens default zoom / scale to 1 -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Specifies the document mode for Internet Explorer -->
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Set the CSS Reset File -->
<link rel="stylesheet" href="./reset.css" />
<!-- Set some basic CSS for the header and body -->
<link rel="stylesheet" href="./style.css" />
<!-- Set the Favicon -->
<link rel="icon" href="./images/favicon/window.svg" type="image/svg+xml" />
</head>
<body>
<!--
FINAL EXAM CONTENT
ALL OF THE CONTENT BELOW HAS BEEN PROVIDED FOR YOU SO
THAT YOU CAN FOCUS ON THE HTML STRUCTURE AND SEMANTICS.
---------------------------------------------
# HEADER SECTION
Site Header (hidden text - not visible on screen)
Amy's Web Development Agency Logo (<- image alt text <- ./images/logo/logo-light.svg)
Contact Us
# MAIN SECTION
## HERO SECTION
Amy's Web Development Agency (hidden text - not visible on screen)
Web Development Solutions Made Easy
Crafting Digital Dreams: Transforming Code into Captivating Experiences - Your Vision, My Expertise.
## SKILLS SECTION
My Skills (hidden text - not visible on screen)
Web Development
UI/UX
CSS
JavaScript
HTML
GitHub
## ABOUT ME SECTION
About me (hidden text - not visible on screen)
Picture of Amy's in business atire with a pink background (<- image alt text <- ./images/about/about.jpg)
Hey, I'm Amy. Are you ready to level up your web project?
I'm a web developer based in Ottawa, Canada. I enjoy creating things that live on the internet, whether that be websites, applications, or anything in between. My goal is to always build products that provide pixel-perfect, performant experiences.
Contact me
## MY WORK SECTION
My Work
Screenshot of Tutorial Exercise 03 (<- image alt text <- ./images/work/work-1.png)
Tutorial Exercise 03
HTML
CSS
Screenshot of Tutorial Exercise 05 (<- image alt text <- ./images/work/work-2.png)
Tutorial Exercise 05
HTML
CSS
Screenshot of Tutorial Exercise 07 (<- image alt text <- ./images/work/work-3.png)
Tutorial Exercise 07
HTML
CSS
Screenshot of Tutorial Exercise 09 (<- image alt text <- ./images/work/work-4.png)
Tutorial Exercise 09
HTML
CSS
JavaScript
Book a call with me
## CONTACT ME SECTION
Excited to chat! Whether you have a project in mind or just want to explore possibilities, let's connect. Use the form below to suggest a time, and I'll reach out to confirm. Can't wait to discuss your ideas!"
Contact Me
## FOOTER SECTION
Site Footer (hidden text - not visible on screen)
Amy's Web Development Agency Logo (<- image alt text <- ./images/logo/logo-dark.svg)
© 2023 Amy's Web Development Agency
-->
<header>
<img src="./images/logo/logo-light.svg" alt="Amy's Web Development Agency Logo" class="logo">
<nav>
<a href="#contact">Contact Us</a>
</nav>
</header>
<main>
<div class="page-container">
<h1>Complete Your Final Exam Here</h1>
</div>
<!-- Hero Section -->
<section class="hero">
<h1 class="sr-only">Amy's Web Development Agency</h1>
<p>Web Development Solutions Made Easy</p>
<p>Crafting Digital Dreams: Transforming Code into Captivating Experiences - Your Vision, My Expertise.</p>
</section>
<!-- Skills Section -->
<section class="skills">
<div class="skills-grid">
<div class="skill-box web-dev">Web Development</div>
<div class="skill-box ui-ux">UI/UX</div>
<div class="skill-box css">CSS</div>
<div class="skill-box js">JavaScript</div>
<div class="skill-box html">HTML</div>
<div class="skill-box github">GitHub</div>
</div>
</section>
<!-- About Me Section -->
<section class="about-me">
<h2 class="sr-only">About me</h2>
<img src="./images/about/about.jpg" alt="Picture of Amy in business attire with a pink background">
<div class="about-me-text">
<h2>Hey, I'm Amy. Are you ready to level up your web project?</h2>
<p>I'm a web developer based in Ottawa, Canada. I enjoy creating things that live on the internet, whether that be websites, applications, or anything in between. My goal is to always build products that provide pixel-perfect, performant experiences.</p>
<a href="#contact" class="about-me-contact-button">Contact me</a>
</div>
</div>
</section>
<!-- My Work Section -->
<section class="my-work">
<h2>My Work</h2>
<br/>
<div class="project">
<img src="./images/work/work-1.png" alt="Screenshot of Tutorial Exercise 03" class="project-image">
<h3>Tutorial Exercise 03</h3>
<p>HTML</p>
<p>CSS</p>
</div>
<div class="project">
<img src="./images/work/work-2.png" alt="Screenshot of Tutorial Exercise 05" class="project-image">
<h3>Tutorial Exercise 05</h3>
<p>HTML</p>
<p>CSS</p>
</div>
<div class="project">
<img src="./images/work/work-3.png" alt="Screenshot of Tutorial Exercise 07" class="project-image">
<h3>Tutorial Exercise 07</h3>
<p>HTML</p>
<p>CSS</p>
</div>
<div class="project">
<img src="./images/work/work-4.png" alt="Screenshot of Tutorial Exercise 09" class="project-image">
<h3>Tutorial Exercise 09</h3>
<p>HTML</p>
<p>CSS</p>
<p>JavaScript</p>
</div>
</section>
<!-- Contact Me Section -->
<section class="contact" id="contact">
<p>Excited to chat! Whether you have a project in mind or just want to explore possibilities, let's connect.</p>
<a href="#contact-form">Contact Me</a>
</section>
</main>
</body>
</html>