-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (111 loc) · 3.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/profile.css">
<title>Hello, world!</title>
<link href="./style.css" type="text/css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-dark bg-primary">
<div class="container">
<a class="navbar-brand">Grumpy Pug</a>
<ul class="nav navbar-nav pull-right">
<li class="nav-item active">
<a class="nav-link" href="#">Profile</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="card text-center">
<div class="card-body">
<img class="pug_photo" src="https://i.pinimg.com/564x/69/09/a2/6909a282c5374e49a3f5af8e2e1519a0.jpg" >
<h4 class="card-title">Grumpy Pug</h4>
<p class="card-text">
I hate Mondays, work, everything!<br>
Everything I tell you!
</p>
</div>
</div>
<div class="card-footer">
<a>
<i class="fa fa-linkedin-square"></i>
</a>
<a>
<i class="fa fa-twitter"></i>
</a>
<a>
<i class="fa fa-facebook-square"></i>
</a>
<a>
<i class="fa fa-spotify"></i>
</a>
</div>
<div class="card text-center">
<div class="card-body">
<h4 class="card-title">Skills</h4>
<p><i class="fa fa-map-marker"></i>
South Kensington, London</p>
<p>
<i class="fa fa-graduation-cap"></i> LSE</p>
<p> <i class="fa fa-heart"></i> Empty boxes, Weekends, Sleep
</p>
</div>
</div>
<div class="card text-center">
<div class="card-body">
<h4 class="card-title">Information</h4>
<p> HTML
<progress class="progress progress-success" value="25" max="100">25%</progress>
</p>
<p> CSS <progress class="progress progress-info" value="50" max="100">50%</progress> </p>
<p> JavaScript <progress class="progress progress-warning" value="75" max="100">75%</progress> </p>
<p> Grumpiness <progress class="progress progress-danger" value="100" max="100">100%</progress> </p>
</div>
</div>
</div>
<div class="col-md-8">
<div class="card">
<div class="card-body">
<h4 class="card-title">About me</h4>
<p class="card-text">
I am a grumpy cat and I don't like anything in this life except from grumping all day long. Do you know the happy song? It says 'Cause I'm happy...' - Well I hate it. But I made my own version for that and I sing crying "Cause I'm grumpy"
</p>
</div>
</div>
<div class="card">
<div class="card-body">
<h4 class="card-title">Interests</h4>
<p class="card-text">
<strong>Call of Duty</strong>
<br>
I like being on duty of grumping. It's in my blood.
</p>
<p class="card-text">
<strong>Ballet</strong>
<br>
This is a hidden special talent of mine. Don't tell anyone this really. <br>
It will destroy my image.... The truth is; I like to pretent that I do ballet.
</p>
<p class="card-text">
<strong>Grumping</strong>
<br>
I'm the master of grumping. The one and only. Noone is like me. Noone can reach my level of awesomeness in grumping. Don't even try. Bitch please.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>