-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVideos.html
87 lines (83 loc) · 3.06 KB
/
Videos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Browse Videos</title>
<link href = "Videos.css" type="text/css" rel="stylesheet">
<link href = "./bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<div>
<header class="header">
<img src="./Images/Logo.png" class="logo" />
</header>
</div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./Home.html">Home</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Browse Videos <span class="sr-only">(current)</span></a></li>
</ul>
<form class="navbar-form navbar-left">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Log Out</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<main class="inner cover">
<h1>Experience these</h1>
<div class="container" align="center">
<div class="video-item">
<div class="thumbnail">
<a href="./Hall.html">
<img src="./Images/Hall.png" alt="Hall" height="720" width="1028"/>
</a>
</div>
<div class="caption">
<h3>Hall</h3>
<p> Come to the Halls to enjoy some biscuits and start a conversation with your friends. Share your story !</p></p>
</div>
</div>
<div class="video-item">
<div class="thumbnail">
<a href="./Game Room.html">
<img src="./Images/Games Room.png" alt="2" height="720" width="1028"/>
</a>
</div>
<div class="caption">
<h3>Games Room</h3>
<p><p> It's time to go to Games Room and enjoy adventure journeys !!!</p></p>
</div>
</div>
<div class="video-item">
<div class="thumbnail">
<a href="./Outside.html">
<img src="./Images/Outside.png" alt="3" height="720" width="1028"/>
</a>
</div>
<div class="caption">
<h3>Outside</h3>
<p> Let's go to Outside zone and have some exciting activities with us </p>
</div>
</div>
</div>
</main>
</body>
</html>