-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<title>Travel blog</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CMuli:400,700" rel="stylesheet">
<!-- <script type="text/javascript" src="jquery-3.1.0.min.js"></script> -->
<style>
#content {padding: 5px 40px;}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand bleu" href="#">OpenWorldBlog</a>
</div>
<ul class="nav navbar-nav">
<li id="home" ><a href="#">Home</a></li>
<li id="tab1"><a href="#">About us</a></li>
<li id="tab2"><a href="#">Contact us</a></li>
</ul>
</div>
</nav>
<div id="content" class="section-row" style="float:left; width:50%;"></div>
<div id="content2" class="section-row"style="float:left; width:50%;"></div>
<script src="script.js"></script>
</body>
</html>