-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (70 loc) · 2.63 KB
/
index.html
File metadata and controls
76 lines (70 loc) · 2.63 KB
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
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #0F1F26;
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/Poppins.css">
<link rel="stylesheet" href="./styles/buttons.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
/* Container for buttons */
.nav-buttons {
position: absolute;
top: 20px;
right: 20px;
display: flex; /* Enables flexbox for horizontal layout */
gap: 25px; /* Adds 25px space between buttons */
flex-direction: row; /* Ensures the buttons are in a row */
justify-content: flex-end; /* Aligns the buttons to the right */
}
/* Button styles */
.nav-button {
width: 105px;
height: 35px;
background-color: #73683B;
color: #fff;
font-family: 'Poppins', sans-serif;
font-weight: bold;
border: none;
border-radius: 8px;
text-align: center;
line-height: 35px;
text-decoration: none;
transition: all 0.3s ease;
}
/* Drop shadow for the current page's button */
.current-page {
box-shadow: 0px 0px 38px 9px rgba(88, 62, 35, 0.4);
}
/* Button hover effect */
.nav-button:hover {
opacity: 0.8;
}
</style>
<title>Navigation Buttons</title>
</head>
<body>
<div class="nav-buttons">
<a href="home.html" class="nav-button current-page">Home</a>
<a href="about.html" class="nav-button">About</a>
<a href="portfolio.html" class="nav-button">Portfolio</a>
</div>
<h1 class="poppins-regular" style="color: #fff ;font-size: 64px; position: absolute; bottom: 40px; left: 60px; margin: 20px;" id="Intro_Text">
I'm Luca, a<br><Software Engineering Student>
</h1>
<img src="./assets/web-development.png" width="300" height="300" class="giphy-embed" id="WevDevPNG">
</body>
</html>