-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathindex.html
42 lines (42 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Profile</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="container">
<div class="avatar">
<a href="">
<img src="./images/pfp.jpeg" alt="Skytsunami" />
</a>
</div>
<div class="content">
<h1>Brandon Webber</h1>
<p>Follow me on:</p>
<p>
<span
><a href="https://github.com/BrandonW52"
><img src="./images/icons8-github-96.png" alt="GitHub logo" /></a
></span>
<span
><a href="#"
><img
src="./images/icons8-linkedin-96.png"
alt="LinkedIn logo" /></a
></span>
<span
><a href="https://codepen.io/Brandon-Webber"
><img
src="./images/icons8-codepen-96.png"
alt="CodePen logo" /></a
></span>
</p>
</div>
</div>
</body>
</html>