-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
28 lines (28 loc) · 1.68 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
<title>Your Name</title>
</head>
<body>
<div class="container text-center my-5">
<img class="img-fluid rounded-circle mb-5" src="images/avatar.png" width="150" alt="Your Name">
<h1 class="mb-5">Your Name</h1>
<div class="col-md-6 mx-auto d-grid gap-2 mb-5">
<a class="btn btn-primary" href="https://facebook.com/yourname"><i class="fab fa-facebook"></i> Facebook</a>
<a class="btn btn-primary" href="https://twitter.com/yourname"><i class="fab fa-twitter"></i> Twitter</a>
<a class="btn btn-primary" href="https://instagram.com/yourname"><i class="fab fa-instagram"></i> Instagram</a>
<a class="btn btn-primary" href="https://linkedin.com/in/yourname"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a class="btn btn-primary" href="https://snapchat.com/add/yourname"><i class="fab fa-snapchat"></i> Snapchat</a>
<a class="btn btn-primary" href="https://wa.me/441234567890"><i class="fab fa-whatsapp"></i> WhatsApp</a>
<a class="btn btn-primary" href="mailto:[email protected]"><i class="fas fa-envelope"></i> Email</a>
<a class="btn btn-primary" href="tel:01234567890"><i class="fas fa-phone"></i> Phone</a>
<a class="btn btn-primary" href="https://example.com"><i class="fas fa-globe"></i> Website</a>
</div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
</body>
</html>