-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (60 loc) · 2.89 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Colin Laws</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="This is my personal blog for showcasing my work. Check out my latest projects, whether that's cars, software, games, I'm probably working on it!">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">
C:\Users\ColinLaws>
</div>
</nav>
<main>
<div style="display: flex; flex-direction: column; align-items: center;">
<div class="profile-picture">
<img src="assets/pfp.png"
alt="A selfie of me underneath my car, working on taking off a lower control arm.
There is a 17mm" />
</div>
<div class="flex-item text-center">
<blockquote>
<p>Welcome to my workshop.</p>
</blockquote>
</div>
<div class="row" style="align-items: center;">
<div class="item">
<a href="https://github.com/ColinLaws">
<img class="social-icon" src="assets/social/gh.svg" />
</a>
</div>
<div class="item">
<a href="https://stackoverflow.com/users/4556992/">
<img class="social-icon" src="assets/social/so.svg" />
</a>
</div>
<div class="item">
<a href="https://www.youtube.com/channel/UCmRKnCcaOS5W-1wd04RgOMw">
<img class="social-icon" src="assets/social/yt.svg" />
</a>
</div>
<div class="item">
<a href="https://www.linkedin.com/in/0xc/">
<img class="social-icon" src="assets/social/li.png" />
</a>
</div>
</div>
<a style="text-align: center;" href="https://bughunters.google.com/profile/986ec9f6-1bcb-4fad-8532-e9557529a3f0/awards">
Be sure to check out my Google Bug Hunters profile, too!
</a>
</div>
</main>
</body>
</html>