-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (44 loc) · 1.27 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Mybareq Hoxha Profile Card</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- this is the markup. you can change the details (your own name, your own avatar etc.) but don’t change the basic structure! -->
<aside class="profile-card">
<header>
<!-- here’s the avatar -->
<a>
<img src="https://www.dropbox.com/s/9upq789hxnhs361/ava.gif?raw=1">
</a>
<!-- the username -->
<h1>Mybareq Hoxha</h1>
<!-- and role or location -->
<h2>Web Developer</h2>
</header>
<!-- bit of a bio; who are you? -->
<div class="profile-bio">
<p>I am a <b>frontend</b> and <b>backend</b> developer. I like motorbikes and cooking</p>
</div>
<!-- some social links to show off -->
<ul class="profile-social-links">
<!-- github -->
<li>
<a target="_blank" href="http://github.com/mhoxha">
<i class="fa fa-github"></i>
</a>
</li>
<!-- linkedin -->
<li>
<a target="_blank" href="http://linkedin.com/in/mybareq-hoxha">
<i class="fa fa-linkedin"></i>
</a>
</li>
<!-- add or remove social profiles as you see fit -->
</ul>
</aside>
<!-- that’s all folks! -->
</body>
</html>