-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (55 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Faraz's Website</title>
<link rel="stylesheet" href="main.css">
<style>
/* Navbar styling */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
border-radius: 12px;
position: fixed;
top: 0;
width: 100%;
z-index: 1;
height: 50px;
}
/* Adjust content padding based on navbar height */
.main-content {
padding-top: 50px; /* Match this to the navbar height */
}
body {
margin: 0;
}
</style>
</head>
<body class="light-theme">
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
<div class="main-content">
<button class="btn">🌙</button>
<div class="container">
<img src="pic.png" alt="Centered Image" class="image">
<a href="https://www.linkedin.com/in/faraz-salim/" target="_blank">
<button class="btn middle">LinkedIn</button>
</a>
</div>
<div class="center">
<p>Hi, my name is Faraz! I'm a student at the University of Pittsburgh pursuing a BS in Computer Science looking to be a software engineer.</p>
</div>
</div>
<script src="app.js"></script>
<noscript>Please enable JavaScript for more functionality.</noscript>
</body>
</html>