-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (78 loc) · 3.11 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<title>Follow Thomas</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<!--<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ["Ubuntu:300,300italic,400,400italic,500,500italic,700,700italic"]
}
});
</script>-->
</head>
<body>
<div class="container-fluid">
<div class="page-wrap">
<div class="login">
<a href="#" class="">Login</a>
-
<a href="#" class="">Create yours</a>
</div>
<div class="content">
<header class="text-center">
<img src="images/Profile-pict-500px.jpg" class="user-photo">
<h1 class="user-name">Thomas</h1>
<div class="bio">The biggest sin is to waste your life</div>
<div class="location">Actuellement à Chiang Mai, Thailande</div>
</header>
<div class="buttonsContainer">
<a href="https://www.facebook.com/thomas.kientz" class="Button facebook" target="_blank">
<div class="logoContainer">
<img src="images/logos/facebook.svg" class="logoButton">
</div>
<div class="textButton">Follow me on Facebook</div>
</a>
<a href="https://soundcloud.com/thomas-kientz" class="Button soundcloud" target="_blank">
<div class="logoContainer">
<img src="images/logos/soundcloud.svg" class="logoButton">
</div>
<div class="textButton">Listen to me on Soundcloud</div>
</a>
<a href="https://medium.com/@thomaskientz" class="Button medium" target="_blank">
<div class="logoContainer">
<img src="images/logos/medium.png" class="logoButton">
</div>
<div class="textButton">Read me on Medium</div>
</a>
<a href="https://twitter.com/thomaskientz" class="Button twitter" target="_blank">
<div class="logoContainer">
<img src="images/logos/twitter.svg" class="logoButton">
</div>
<div class="textButton">Follow me on Twitter</div>
</a>
<a href="https://www.instagram.com/thomaskientz/" class="Button instagram" target="_blank">
<div class="logoContainer">
<img src="images/logos/instagram.svg" class="logoButton">
</div>
<div class="textButton">Follow me on Instagram</div>
</a>
<a href="" class="Button snapchat" target="_blank">
<div class="logoContainer">
<img src="images/logos/snapchat.svg" class="logoButton">
</div>
<div class="textButton">Watch my story on Snapchat</div>
</a>
</div>
</div>
<a href="#" class="footer login">About</a>
</div>
</div>
</body>
</html>