-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sachin Verma
committed
Aug 29, 2020
1 parent
a1ac18c
commit 5851f47
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
body{ | ||
background: url(https://images.unsplash.com/photo-1550782674-fa597ecc1bfd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1949&q=80); | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
color:white; | ||
font-family: 'Lato', sans-serif; | ||
} | ||
html{ | ||
height:100%; | ||
} | ||
#content{ | ||
text-align: center; | ||
padding-top: 35%; | ||
text-shadow: 0px 4px 3px rgba(0,0,0,0.4), | ||
0px 8px 13px rgba(0,0,0,0.1); | ||
} | ||
h1{ | ||
font-weight: 700; | ||
font-size: 5em; | ||
} | ||
hr{ | ||
width: 400px; | ||
} | ||
#mainNavbar li a:hover{ | ||
color:red; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>StartUp Page</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> | ||
<link rel="stylesheet" type="text/css" href="startup.css"> | ||
</head> | ||
<body> | ||
<nav id="mainNavbar" class="navbar navbar-default"> | ||
<div class="container"> | ||
<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="#">Purrfect Match</a> | ||
</div> | ||
|
||
|
||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#">About</a></li> | ||
<li><a href="#">Contact</a></li> | ||
</ul> | ||
<ul class="nav navbar-nav navbar-right"> | ||
<li><a href="#">Sign Up <span class="glyphicon glyphicon-user" aria-hidden="true"></span></a></li> | ||
<li><a href="#">Login <span class="glyphicon glyphicon-log-in" aria-hidden="true"></span></a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div id="content"> | ||
<h1>Purrfect Match</h1> | ||
<h3>The Only Human-Feilne Dating App</h3> | ||
<hr> | ||
<button class="btn-default btn-lg">Get Started!</button> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
</div> | ||
|
||
|
||
</div> | ||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" | ||
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" | ||
crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script> | ||
</body> | ||
</html |