-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (66 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Your Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Your Name</h1>
<nav>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<div class="container" id="about">
<h2>About Me</h2>
<p>
This is where you can introduce yourself, talk about your skills, experience, and what makes you unique.
</p>
</div>
<div class="container" id="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-grid">
<div>
<a href="aux.html">
<img src="images/aux/concept-diagram-scaled.jpg" alt="Project 1">
</a>
<div>
<h3>The AUX</h3>
<p>Description of project 1.</p>
<a href="aux.html" class="btn">More</a>
</div>
</div>
<div>
<a href="aux.html">
<img src="images/atm/Screenshot 2023-10-12 at 2.25.57 PM.png" alt="Project 2">
</a>
<div>
<h3>Answer the Moment</h3>
<p>Description of project 2.</p>
<a href="aux.html" class="btn">More</a>
</div>
</div>
<div>
<a href="aux.html">
<img src="images/eyc/home.png" alt="Project 3">
</a>
<div>
<h3>Embrace Your Crown</h3>
<p>Description of project 3.</p>
<a href="aux.html" class="btn">More</a>
</div>
</div>
</div>
</div>
<div class="container" id="contact">
<h2>Contact</h2>
<p>Contact information, such as your email address and social media links, can be placed here.</p>
</div>
<footer>
© 2023 Your Name
</footer>
</body>
</html>