-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 2.18 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
<!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="css/style.css">
<title>Responsive Portfolio Boilerplate</title>
</head>
<body>
<header>
<nav class="navbar">
<div class="logo">My Portfolio</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h1>Welcome to my Portfolio</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Soluta, quo. Quam esse aliquid quo, excepturi autem deleniti repellendus sapiente omnis laboriosam. Provident expedita nisi repellat animi temporibus totam veniam quas.</p>
<button onclick="showAlert()">Explore My Work</button>
</section>
<section id="portfolio" class="portfolio">
<h2>My Projects</h2>
<div class="portfolio-grid">
<div class="card">
<h3>Project 1</h3>
<p>Simple Description 1</p>
</div>
<div class="card">
<h3>Project 2</h3>
<p>Simple Description 2</p>
</div>
<div class="card">
<h3>Project 3</h3>
<p>Simple Description 3</p>
</div>
</div>
</section>
<section id="about" class="about">
<h2>About Me</h2>
<p>Short description about me</p>
</section>
<footer>
<p>Follow me on Social Media!</p>
<ul class="social-links">
<li><a href="#">LinkedIn</a></li>
<li><a href="#">GitHub</a></li>
<li><a href="#">YouTube</a></li>
</ul>
</footer>
<script src="js/script.js"></script>
</body>
</html>