-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 1.62 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 1.62 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="logo.png" alt="Company Logo"> <h1>Strava Hub</h1>
<center>made by Satria Nugroho Putra</center>
</header>
<nav>
<ul>
<li><a href="https://www.linkedin.com/in/satrianugrohoputra">Profile</a></li>
<li><a href="https://www.instagram.com/satrianugroho.p?igsh=b15bmhsOGhn">Social Media</a></li>
<li><a href="https://strava.app.link/RV0fcjpidKb">Strava</a></li>
</ul>
</nav>
<main>
<div class="content-left">
<h2>Strava Hub</h2>
<p>Di Stravahub, Anda dapat berbagi cerita inspiratif, pencapaian, dan pengalaman olahraga Anda dengan sesama atlet dan penggemar.</p>
</div>
<div class="content-right">
<h3>Sign Up</h3>
<form>
<input type="email" placeholder="Your Email">
<button type="submit">Sign Up</button>
</form>
</div>
</main>
<footer>
<p>@ Social Media To Contact</p>
<ul class="list-unstyled d-flex justify-content-center">
<a href="https://youtube.com/@satrianugrohoputra.xa6?si=ll1_1WhlChC0ssW9" class="me-3">
<i class="bi bi-youtube fs-4"></i> YouTube
</a>
<ul></ul>
<a href="https://www.instagram.com/satrianugroho.p?igsh=b15bmhsOGhn" class="me-3">
<i class="bi bi-instagram fs-4"></i> Instagram
</a>
<ul></ul>
<a href="https://www.linkedin.com/in/satrianugrohoputra" class="me-3">
<i class="bi bi-linkedin fs-4"></i> LinkedIn
</a>
<ul></ul>
</ul>
</footer>
</body>
</html>