-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.21 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="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 href="./aboutPage.html" class="has-border">About Me</a>
<a class="has-border">My Blog</a>
<a href="./contact.html" class="has-border">Contact Me</a>
</nav>
</header>
<main>
<img src="lucasheadshot.jpg" id="profile-pic" alt="Head shot of Me">
<h1>Lucas McGill</h1>
<h2>Student of Web Development</h2>
<button id="portfolio">Portfolio</button>
<a class="small-text" href="https://austincodingacademy.com/">© Austin Coding Academy</a>
</main>
<!-- ...and here. -->
</body>
</html>