-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (90 loc) · 3.15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="index.css" />
<title>Portfolio Site</title>
</head>
<body>
<div class="container">
<header class="navbar">
<div class="left">
<h1>Patrick Star</h1>
</div>
<nav class="right">
<a href="#">Work</a>
<a href="#">Contact</a>
<a href="#"
><img src="images/dribble_icon.png" alt="Dribble icon"
/></a>
<a href="#"
><img src="images/insta_icon.png" alt="Instagram icon"
/></a>
<a href="#"><img src="images/v_icon.png" alt="Vimeo icon" /></a>
</nav>
<div class="hamburger">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</header>
<nav class="mobileNav">
<a href="#">Work</a>
<a href="#">Contact</a>
<a href="#"><img src="images/dribble_icon.png" alt="Dribble icon" /></a>
<a href="#"><img src="images/insta_icon.png" alt="Instagram icon" /></a>
<a href="#"><img src="images/v_icon.png" alt="Vimeo icon" /></a>
</nav>
<div class="project-grid">
<div class="project" id="eth">
<img src="images/eth.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="alphabet">
<img src="images/alphabet.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="traveler">
<img src="images/traveler.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="cube">
<img src="images/cube.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="astro">
<img src="images/astro.avif" alt="" />
<p class="overlay light">View Project</p>
</div>
<div class="project" id="cup">
<img src="images/cup.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="insta">
<img src="images/insta.avif" alt="" />
<p class="overlay light">View Project</p>
</div>
<div class="project" id="foam">
<img src="images/foam.avif" alt="" />
<p class="overlay">View Project</p>
</div>
<div class="project" id="dimensional">
<img src="images/dimensional.avif" alt="" />
<p class="overlay light">View Project</p>
</div>
</div>
<footer class="footer">
Designed and built by Patrick Star in Bikini Bottom.
</footer>
</div>
<script src="index.js"></script>
</body>
</html>