-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (60 loc) · 2.38 KB
/
index.html
File metadata and controls
63 lines (60 loc) · 2.38 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
<html>
<head>
<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=Playfair+Display:wght@700&family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.2/css/all.css">
<link rel="stylesheet" href="style.css">
<meta name="description" content="This is the profile page for Vincent Tee">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vincent's Profile</title>
</head>
<body>
<div class="container">
<div class="card">
<h1>
Vincent Tee
</h1>
<h2>
amazingly average code monkey
</h2>
<img src="../profile/images/profile.jpeg" class="img-circle" alt="Vincent Tee">
<p>
Web development student at Le Wagon 🖥️, food lover 🍽️, bouldering adventurer 🧗♂️, and a budding shutterbug 📸. Born in Malaysia 🇲🇾, but now living it up in Melbourne 🇦🇺. Let's connect over code, cuisine, climbing, or clicks!
</p>
</div>
<div class="card">
<h2>
Some Snaps
</h2>
<div>
<img class = "photos" src="../profile/images/1.JPG" alt="Melbourne sunset">
<img class = "photos" src="../profile/images/2.JPG" alt="On the slopes">
<img class = "photos" src="../profile/images/000053.JPG" alt="With the boys">
</div>
<a href="https://images-prod.healthline.com/hlcmsresource/images/AN_images/bananas-1296x728-feature.jpg" target="_blank" class="btn-oj"> Bananas! </a>
</div>
<div class="card">
<h2>
Socials
</h2>
<ul class="list-inline">
<li>
<a href="https://www.facebook.com/vinny.tee97/" target="_blank">
<i class="fa-brands fa-square-facebook"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/vinnyteeee/" target="_blank">
<i class="fa-brands fa-square-instagram"></i>
</li>
<li>
<a href="https://www.linkedin.com/in/vincent-tee-aus/" target="_blank">
<i class="fa-brands fa-linkedin"></i></i>
</li>
</ul>
</div>
</div>
</body>
</html>