-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
47 lines (45 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ethan's Personal Site</title>
<meta charset="utf-8">
<meta name="author" content="Ethan Bokelberg">
<meta name="description" content="A personal site with information about me and my skills">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- link css files here-->
<link rel="stylesheet" href="css/custom.css" type="text/css" media="screen">
</head>
<!-- begin body section-->
<body id="index">
<!-- header -->
<header>
<h1>Ethan Bokelberg</h1>
</header>
<!-- navigation -->
<nav>
<a href="index.html">Home</a>
<a href="">Resume</a>
<a href="codecademy.html">Codecademy Project Portfolio</a>
<!-- add more pages -->
</nav>
<!-- main section -->
<main>
<section class="title-card">
<h1>Hello there</h1>
</section>
<article class="grid-container">
<section id="grid-left">
<h2>title</h2>
<p>placeholder text</p>
</section>
<section id="grid-right">
<h2>title</h2>
<p>placeholder text</p>
</section>
</article>
</main>
<footer>
<p>Site made by Ethan Bokelberg</p>
</footer>
</body>
</html>