-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (32 loc) · 1.36 KB
/
index.html
File metadata and controls
34 lines (32 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-wquiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./style.css">
<title>My Portfolio</title>
</head>
<body>
<!--This is a what comment line looks like in HTML-->
<!--The rest of your code goes between here...-->
<header>
<img src="https://cdn.evbuc.com/eventlogos/188084824/acastandardcirclefullname.png" class="logo" alt="austin coding academy logo">
<nav>
<a href="./resume.html" class="has-border">Resume</a>
<a class="./about.html">About Me</a>
<a class="has-border">My Blog</a>
<a class="has-border">Contact Me</a>
</nav>
</header>
<main>
<img src="./myProfilePic.jpg" id="profile-pic" alt="Head shot of Me">
<h1>Aaron Cook</h1>
<h2>Student of Web Development</h2>
<button id="portfolio">Portfolio</button>.
<!-- REPLACE THIS LINE WITH THE PORTFOLIO BUTTON, STEP 9 -->
<a class="small-text" href="https://austincodingacademy.com/">© Austin Coding Academy</a>
</main>
<!--...and here.-->
</body>
</html>