-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (99 loc) · 4.67 KB
/
index.html
File metadata and controls
106 lines (99 loc) · 4.67 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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">
<title>Traverous - Personal Travel Journal</title>
<!-- StyleSheets -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" crossorigin="anonymous">
<link rel="stylesheet" href="myStyle.css">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_16x16.png">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" style="background-color: white;">
<div class="container">
<ul class="navbar-nav">
<li class="nav-item">
<a class=" navbar-brand" href="# ">
<img src="images/favicon.png " width="30 " height="30 "> Traverous
</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link">Already a member?</a>
</li>
<li class="nav-item">
<a class="nav-link" href="signin.html">Sign In</a>
</li>
</ul>
</div>
</nav>
<!--Page Starts Here-->
<div class="masthead ">
<div class="container ">
<div class="row ">
<div class="col-lg-7 my-auto ">
<div class="header-content mx-auto ">
<h1 class="mb-5 " id="title ">Record inspiring travel stories with Traverous</h1>
<h3 class="mb-5 " id="subtitle ">Traverous is your Personal Travel Journal that keeps your special moments special.
</h3>
</div>
</div>
<div class="col-lg-5 my-auto">
<h1 class="mb-5 ">Not a member?</h1>
<h3 class="mb-5 ">Sign up now</h3>
<form action="home.html" method="POST">
<div class="form-group">
<input type="text" class="form-control " name="name " placeholder="Your Name ">
</div>
<div class="form-group">
<input type="text" class="form-control " name="username " placeholder="Username ">
</div>
<div class="form-group">
<input type="password" class="form-control " name="password " placeholder="Password">
</div>
<button type="submit" class="btn btn-outline-dark " name="signUp">Submit</button>
</form>
</div>
</div>
</div>
</div>
<!-- Footer -->
<section id="footer">
<div class="container">
<div class="row text-center text-xs-center text-sm-left text-md-left">
<div class="col-xs-12 col-sm-4 col-md-4">
<h5>Quick links</h5>
<ul class="list-unstyled quick-links">
<li><a href="index.html"> Traverous Home</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<h5>Contacts</h5>
<ul class="list-unstyled quick-links">
<li><a href="https://www.facebook.com/AliamDaGreat" class="fab fa-facebook"> Ali Hassan</a></li>
<li><a href="https://www.facebook.com/vegan.body" class="fab fa-facebook"> Shahzeb</a></li>
</ul>
</div>
<div class="col-xs-12 col-sm-4 col-md-4">
<h5>Find Us on</h5>
<ul class="list-unstyled quick-links">
<li><a rel="noopener nofollow" target="_blank" href="https://github.com/secpar"><i class="fab fa-github"></i> Github</a></li>
<li><a rel="noopener nofollow" target="_blank" href="mailto:ali-hassan27@outlook.com" target="_blank"><i class="fa fa-envelope"></i> Email Us</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 mt-2 mt-sm-2 text-center">
<p class="h6">Traverous © 2019</p>
</div>
</div>
</div>
</body>
</html>