-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (35 loc) · 1.16 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
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Portfolio</title>
</head>
<body>
<header class="header">
<nav class="header__nav">
<h2 class="header__nav-home">kelly wilkins</h2>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
</nav>
<div class="header__heading">
<div class="header__heading-block"></div>
<div class="header__heading-block-2"></div>
<h1 class="header__heading-text">graphic and web design</h1>
</div>
</header>
<div id="cursor">
<div class="cursor--inner"></div>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="#">About</a>
<a href="#">Graphics</a>
<a href="#">Websites</a>
<a href="#">Contact</a>
</div>
</div>
<script src="index.js"></script>
</body>
</html>