-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 1.8 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TODO: change the title tag - this is the name of the tab title -->
<!-- TODO: try adding a favicon -->
<title>My Profile</title>
<script
src="https://kit.fontawesome.com/a86c93a2cb.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="card-white">
<!-- TODO: change the name and subtitle below -->
<h1>Hello I'm [edit your name here]</h1>
<h2>[Edit your subtitle]</h2>
<img
src="images/github-icon.webp"
alt="Profile Picture of Aaron Lambley"
width="200px"
height="200px"
class="img-circle"
/>
<h3>^ change the image above ^</h3>
<p>Write something about yourself</p>
<!-- TODO: update the email below - think about how the email link operate. Does it open in the same or new tab? -->
<a href="mailto:@test.com" class="btn-blue">Contact Me</a>
</div>
<div class="card-white">
<h3>Follow Me</h3>
<!-- TODO: add some social links here and use Fontawesome icons -->
<!-- https://fontawesome.com/search?o=r&m=free -->
<ul class="list-inline">
<li>
<a href="https://github.com/lambley">
<i class="fa-brands fa-github icon-larger"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/maya_the_collie_cross/">
<i class="fa-brands fa-instagram icon-larger"></i
></a>
</li>
</ul>
</div>
</div>
</body>
</html>