-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (63 loc) · 1.86 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
<!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="style.css">
<title>David Nino</title>
</head>
<body>
<header>
<h1 class="header">David Nino</h1>
<nav>
<ul>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#projects">Projects</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
<li>
<a href="#resume">Resume</a>
</li>
</ul>
</nav>
</header>
<main>
<div id="about">
<h2 class="about">About</h2>
<div>
<p>Hi, my name is David. An inspiring Web Developer based out of Northern California. Currently learning
HTML, CSS, & JavaScript.</p>
</div>
</div>
<div id="projects1">
<div class="images"></div>
<div class="photos">
<img src="assets/HTML.jpg" alt=" HTML & CSS">
</div>
<div class="photos">
<img src="assets/Webdesign.jpg" alt="Web Design">
</div>
<div class="photos">
<img src="assets/codescreen.jpeg" alt="Code">
</div>
<div class="photos">
<img src="assets/Screenshot 2023-11-05 at 9.28.14 PM.png" alt="Savory Secrets">
</div>
</div>
</main>
<footer>
<h2 class="contact">Contact</h2>
<nav class="contact-items">
<ul class="info">
<li>[email protected]</li>
<li>Linkedin</li>
</ul>
</nav>
</footer>
</body>
</html>