-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (61 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Portfolio</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<nav>
<div class="container">
<h1>Your Name</h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="container hero">
<h2>Welcome to My Portfolio</h2>
<p>I'm a passionate <span class="highlight">Web Developer</span> creating awesome websites.</p>
<a href="#portfolio" class="btn">View My Work</a>
</div>
</header>
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<p>Write a brief bio about yourself here. Mention your skills, experience, and interests.</p>
</div>
</section>
<section id="portfolio" class="portfolio">
<div class="container">
<h2>Portfolio</h2>
<!-- Your portfolio items go here -->
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Contact Me</h2>
<p>Feel free to reach out to me through the form below or via email at [email protected].</p>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Your Name. All rights reserved.</p>
<div class="social-icons">
<!-- Add your social media icons and links here -->
</div>
</div>
</footer>
<link rel="stylesheet" href="styles.css">
</body>
</html>