-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Portfolio</title>
<link rel="stylesheet" href="styles.css" />
<link
href=" https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header class="bg-rich-black text-white text-center py-5">
<h1>Your Name</h1>
<p>Game Developer | Programmer</p>
<nav>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</header>
<main class="container mt-5 text-center">
<h2>Welcome to My Portfolio</h2>
<p>
Explore my projects, learn about my skills, and feel free to
reach out!
</p>
<a href="portfolio.html" class="btn btn-primary">View My Work</a>
</main>
<footer class="bg-rich-black text-white text-center py-3">
<p>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>