-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
executable file
·84 lines (76 loc) · 3.86 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Undiscovered</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="profile.html">Profile</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Help</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-12"><h2 style="font-family: 'Oswald', sans-serif; color: #10acf3;">Janette Schiler <span class="glyphicon glyphicon-user"></span></h2></div>
</div>
</div>
<div class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-3">
<p><img src="woman.jpg" class="img-responsive img-rounded"></p>
<p><span class="glyphicon glyphicon-camera"></span> More Photos</p>
<p><span class="glyphicon glyphicon-facetime-video"></span> Youtube Profile</p>
<p><span class="glyphicon glyphicon-music"></span> Soundcloud Profile</p>
<p><span class="glyphicon glyphicon-envelope"></span> Contact Janette</p>
<p><span class="glyphicon glyphicon-heart"></span> Favourite</p>
</div>
<div class="col-md-6">
<iframe width="540" height="304" src="https://www.youtube.com/embed/IGnr5NB2vvU" frameborder="0" allowfullscreen></iframe>
<p><span class="glyphicon glyphicon-upload"></span> Date uploaded: 13th October 2016<br /><span class="glyphicon glyphicon-book"></span> Category: Dance<br /><span class="glyphicon glyphicon-tag"></span> Tags: dance, hip-hop</p>
<hr>
<iframe width="540" height="304" src="https://www.youtube.com/embed/gMNCwgXtQIw" frameborder="0" allowfullscreen></iframe>
<p><span class="glyphicon glyphicon-upload"></span>Date uploaded: 4th October 2016<br /><span class="glyphicon glyphicon-book"></span>Category: Gymnastics<br /><span class="glyphicon glyphicon-tag"></span>Tags: gymnastics</p>
<hr>
<iframe width="540" height="304" src="https://www.youtube.com/embed/0CC3Z1xMqG4" frameborder="0" allowfullscreen></iframe>
<p><span class="glyphicon glyphicon-upload"></span>Date uploaded: 2nd October 2016<br /><span class="glyphicon glyphicon-book"></span>Category: Music<br /><span class="glyphicon glyphicon-tag"></span>Tags: music, guitar</p>
</div>
<div class="col-md-3"><h4>Contact me</h2>
<div class="form-group">
<label for="usr">Name:</label>
<input type="text" class="form-control" id="usr">
</div>
<div class="form-group">
<label for="pwd">Email address:</label>
<input type="password" class="form-control" id="pwd">
</div>
<div class="form-group">
<label for="comment">Message:</label>
<textarea class="form-control" rows="5" id="comment"></textarea>
</div>
<a href="videos.html" class="btn btn-success">Send</a>
</div>
</div>
<hr>
<footer>
<p>© Undiscovered 2016</p>
</footer>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="../../dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>