-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
100 lines (98 loc) · 3.78 KB
/
profile.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Heylo - Find Your Meeting Spot</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap"
/>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
</head>
<body>
<header>
<nav>
<svg width="200" height="80">
<defs>
<linearGradient
id="gradient1"
x1="0%"
y1="0%"
x2="100%"
y2="0%"
>
<stop
offset="0%"
style="stop-color: #bc3cc5; stop-opacity: 1"
/>
<stop
offset="100%"
style="stop-color: #0b96f2; stop-opacity: 1"
/>
</linearGradient>
</defs>
<text
x="50%"
y="50%"
text-anchor="middle"
dominant-baseline="middle"
font-size="4rem"
font-weight="900"
fill="url(#gradient1)"
paint-order="stroke"
>
Heylo
</text>
</svg>
<ul>
<li class="notification-container">
<button
class="notification-btn"
style="background-color: #d7d7d7; padding-right: 0"
>
<i
class="fa-solid fa-bell"
style="color: #000000"
></i>
<span class="notification-count">0</span>
</button>
<div class="notification-popup">
<h3>Notifications</h3>
<ul>
<li>Notification 1</li>
<li>Notification 2</li>
<li>Notification 3</li>
</ul>
</div>
</li>
<li><a onclick="scrollToHome();">Profile</a></li>
<li><a onclick="scrollToFeatures();">Find Location</a></li>
<li><a onclick="scrollToFeatures();">Reservations</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>Profile</h2>
<p>Your app for finding the perfect meetup spot!</p>
<button onclick="redirectToSignUp();">Get Started</button>
</section>
<div style="height: 2000px"></div>
<section id="features">
<h2>Features</h2>
<ul>
<li>Login/Signup with email or social media</li>
<li>Nearest Meeting Point Calculation</li>
<li>Real-Time Traffic Updates</li>
<li>Venue Suggestions and Reviews</li>
<li>Event Scheduling and Notifications</li>
</ul>
</section>
<script src="script.js"></script>
</body>
</html>