-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
77 lines (77 loc) · 2.47 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<title>Mortens profile</title>
<meta charset="utf-8">
<meta name="description" content="Check out this uniqe Mortens uniqe profile!">
<script src="https://use.fontawesome.com/a64672f5d2.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Raleway:700,300" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="card text-cented">
<img src="images/profile-img.jpg" class="img-circle">
<h1>Morten Hønsi Følling</h1>
<h2>Student @ Le Wagon</h2>
<p>I am back!</p>
<a href="#" class="btn-blue">Learn more</a>
</div>
<div class="card text-cented list-inline">
<ul class="list-inline > li">
<li>
<a href="https://www.facebook.com/morten.folling">
<i class="fa fa-facebook" aria-hidden="true"></i></i> Facebook
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/mortenfolling/">
<i class="fa fa-linkedin" aria-hidden="true"></i> Linkedin
</a>
</li>
<li>
<a href="https://github.com/hoensi">
<i class="fa fa-github" aria-hidden="true"></i></i> Github
</a>
</li>
</ul>
</div>
<div class="card text-cented">
<h2>Favourite dogs</h2>
<table>
<tbody>
<tr>
<td>
<img src="images/husky.jpg" alt="Husky">
</td>
<td>
<h3>Husky</h3>
<p>This is a wonderful doogie. Wants to be the boss, has a great personlaity.</p>
</td>
</tr>
<tr>
<td>
<img src="images/corgi.jpg" alt="Corgi">
</td>
<td>
<h3>Corgi</h3>
<p>The queens pup. Such awesome, much fun. Couchpotato.</p>
</td>
</tr>
<tr>
<td>
<img src="images/sheperd.jpg" alt="Shepherd">
</td>
<td>
<h3>German Shepherd</h3>
<p>This is the straight one. Polite and trustworthy.</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="card text-cented">
Made with <i class="fa fa-heart" aria-hidden="true"></i> at Le Wagon Barcelona
</div>
</div>
</body>
</html>