-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.13 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
<!DOCTYPE html>
<html lang="pl_PL">
<head>
<meta charset="utf-8">
<title>MyDay</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://fonts.googleapis.com/css?family=Sansita&subset=latin-ext" rel="stylesheet">
<link href="css/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="frontpage">
<nav class="">
<ul class="nav nav-tabs nav-justified">
<li role="presentation"><a href="index.html">Home</a></li>
<li role="presentation"><a href="todo.html">To Do List</a></li>
<li role="presentation"><a href="links.html">Links</a></li>
<li role="presentation"><a href="about.html">About</a></li>
<li role="presentation"><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="container-fluid full">
<div class="row claim">
<div class="col-md-4"></div>
<div class="col-md-4 title"><h2>Plan your perfect day</h2></div>
<div class="col-md-4"></div>
</div>
<div class="row">
<div class="col-lg-2"></div>
<div class="col-lg-4">
<h3 class="claimWall">Create your wall!</h3>
<input type="text" class="form-control createWall" placeholder="Write name your wall..." value="">
<br/>
<button type="button" class="btn btn-primary btn-lg btn-block create">Create >></a></button>
</div>
<div class="col-lg-4">
<h3 class="claimWall">Search your wall!</h3>
<input type="text" class="form-control searchWall" placeholder="Write name your wall...">
<br/>
<button type="button" class="btn btn-primary btn-lg btn-block search"> Search >> </button>
</div>
<div class="col-lg-2"></div>
</div>
</div>
</header>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="css/bootstrap/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.9/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.9/firebase-database.js"></script>
<script src="js/firebase.js"></script>
</body>
</html>