Created
May 24, 2018 16:22
-
-
Save yukeehan/6fbef9c08d8dd57e93923be402abb5fe to your computer and use it in GitHub Desktop.
a simple web using a picture as the background
This file contains hidden or 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
body{ | |
font-family: Lato; | |
background: url(https://images.unsplash.com/photo-1511275539165-cc46b1ee89bf?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=4eed771c93754c026e4a14e74dc3251d&auto=format&fit=crop&w=1050&q=80); | |
background-size: cover; | |
} | |
html{ | |
height: 100% | |
} | |
.content{ | |
text-align: center; | |
padding-top: 25%; | |
color: white; | |
text-shadow: 0px 4px 3px rgba(0,0,0,0.4), | |
0px 8px 13px rgba(0,0,0,0.1), | |
0px 18px 23px rgba(0,0,0,0.1); | |
} | |
h1{ | |
font-size: 5.0em; | |
font-weight: 700; | |
} | |
hr{ | |
width: 400px; | |
border-top: 1px solid #f8f8f8; | |
border-bottom: 1px solid rgba(0,0,0,0.2); | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Purffect match</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous"> | |
<link rel="stylesheet" type="text/css" href="match.css"> | |
<link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet"> | |
</head> | |
<body> | |
<nav class="navbar navbar-default"> | |
<div class="container"> | |
<!-- Brand and toggle get grouped for better mobile display --> | |
<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> | |
<!-- Collect the nav links, forms, and other content for toggling --> | |
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | |
<ul class="nav navbar-nav"> | |
<li class="active"><a href="#">Home <span class="sr-only">(current)</span></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 <i class="fas fa-user"></i></a></li> | |
<li><a href="#">Login <i class="fas fa-user-plus"></i></a></li> | |
</ul> | |
</div><!-- /.navbar-collapse --> | |
</div><!-- /.container-fluid --> | |
</nav> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-12"> | |
<div class="content"> | |
<h1>Purrfect Match</h1> | |
<h3>The Only Human-Feline Dating App</h3> | |
<hr> | |
<button type="button" class="btn btn-default btn-lg"><i class="fas fa-paw"></i> Get Started!</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<script | |
src="http://code.jquery.com/jquery-3.3.1.min.js" | |
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" | |
crossorigin="anonymous"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment