-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_page.html
64 lines (64 loc) · 2.81 KB
/
home_page.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
<!DOCTYPE html>
<html>
<head>
<title>HomePage</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width intial-scale=1">
<link rel="icon" href="img/logo-iiitv.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" crossorigin="anonymous">
<link href="home_page.css" rel="stylesheet">
</head>
<body>
<div class="menubar">
<div class="menubar-content">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-sm-2 col-sm-2">
<div class="site-title">
<h3>Know Your Course</h3>
</div>
</div>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myNav">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="col-md-10 col-sm-10">
<div class="collapse navbar-collapse" id="myNav">
<ul class="nav navbar-nav cus-nav">
<li><a href="#" class="active">Home</a></li>
<li><a href="#" class="active">About</a></li>
<li><a href="#" class="active">Courses</a></li>
<li><a href="#" class="active">Help</a></li>
</ul>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<div class="home-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="home-text">
<h2>Know Your Course</h2>
<p class="hidden-xs">With Bootstrap 2, we added optional mobile friendly styles for key aspects of the framework. With Bootstrap 3, we've rewritten the project to be mobile friendly from the start. Instead of adding on optional mobile styles, they're baked right into the core. In fact, Bootstrap is mobile first. Mobile first styles can be found throughout the entire library instead of in separate files.</p>
<a href="#">Get Started</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>