-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 3.39 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 3.39 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
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
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="./style/reset.css">
<link rel="stylesheet" type="text/css" href="./style/index.css">
<link href="https://fonts.googleapis.com/css2?family=Pangolin&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<nav>
<h1>Candace Morris</h1>
<div class="links">
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./projects.html">Projects</a>
<a href="./contact.html">Contact</a>
</div>
</nav>
<header>
<img src="https://picsum.photos/500/300" alt="main-image">
<div class="about-me">
<h2>Candace Morris</h2>
<button type="submit">My Projects</button>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Asperiores autem fugiat facere omnis aliquid! Corrupti ad placeat, beatae excepturi deserunt iusto mollitia sint tempora, dolorum qui, totam incidunt odio assumenda?</p>
</div>
</header>
<section class="gallery-projects">
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project1">
</a>
<p class="desc">Project 1</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project2">
</a>
<p class="desc">Project 2</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project3">
</a>
<p class="desc">Project 3</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project4">
</a>
<p class="desc">Project 4</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project5">
</a>
<p class="desc">Project 5</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project6">
</a>
<p class="desc">Project 6</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project7">
</a>
<p class="desc">Project 7</p>
</div>
<div>
<a target="_blank" href="https://picsum.photos/200">
<img src="https://picsum.photos/200" alt="project8">
</a>
<p class="desc">Project 8</p>
</div>
</section>
<footer>
<h2>Like what you see?</h2>
<button type="submit">Contact Me</button>
<ul>
<li><a href="http://facebook.com" target="_blank">facebook</a></li>
<li><a href="http://instagram.com" target="_blank">instagram</a></li>
<li><a href="http://twitter.com" target="_blank">twitter</a></li>
</ul>
</footer>
</body>
</html>