Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
tinderwebsite/index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
130 lines (80 sloc)
4.01 KB
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
<!doctype html> | |
<html class="no-js" lang=""> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title></title> | |
<meta name="description" content=""> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
<!-- Place favicon.ico in the root directory --> | |
<link rel="stylesheet" href="css/normalize.css"> | |
<link href="https://fonts.googleapis.com/css?family=Montserrat:700" rel="stylesheet"> | |
<link rel="stylesheet" href="css/main.css"> | |
<script src="js/vendor/modernizr-2.8.3.min.js"></script> | |
</head> | |
<body> | |
<!--[if lt IE 8]> | |
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> | |
<![endif]--> | |
<!-- Add your site or application content here --> | |
<nav> | |
<li><a class="active" href="index.html"><img src="img/tinderlogo.png" alt="lake logo"></a></li> | |
</nav> | |
<div id="mainimg"> | |
</div> | |
<div id="container"> | |
<div id="about"> | |
<h1>"The world's hottest app"<em> - Forbes</em></h1> | |
<p>10 billion matches later, Tinder has changed the way people meet around the world. It’s so much more than a dating app. Tinder is a powerful tool to meet people, expand your social group, meet locals when you’re traveling and find people you otherwise never would have met. Making new connections on Tinder is easy and fun—just Swipe Right to Like someone, or Swipe Left to pass. If someone likes you back, It’s a Match! Chat online with your matches, step away from your phone, get out and experience something new in the real world. It’s that simple!</p> | |
<a href="https://itunes.apple.com/us/app/tinder/id547702041?mt=8&ign-mpt=uo%3D6">Download Tinder Now!</a> | |
</div> | |
<div id="about"> | |
<h1>Features</h1> | |
<img src="img/img1.jpeg"> | |
<img src="img/img2.jpeg"> | |
<img src="img/img3.jpeg"> | |
<div id="centerlink"> | |
<a href="https://itunes.apple.com/us/app/tinder/id547702041?mt=8&ign-mpt=uo%3D6">View All Features</a> | |
</div> | |
</div> | |
<div id="about"> | |
<h1>Reviews</h1> | |
<div class="reviews"> | |
<h2><img src="img/stars.png" alt="5 stars"> A Dreamer</h2> | |
<p class="reviewname">By Christine B. on October 7, 2016</p> | |
<p class="reviewdescrip">This was the exact app I have been waiting for. Am I dreaming?</p> | |
</div> | |
<div class="reviews"> | |
<h2><img src="img/stars.png" alt="5 stars"> I found love!!!</h2> | |
<p class="reviewname">By Joel S. on October 5, 2016</p> | |
<p class="reviewdescrip">I found the love of my life on Tinder!</p> | |
</div> | |
<div class="reviews"> | |
<h2><img src="img/stars.png" alt="5 stars"> Five Stars</h2> | |
<p class="reviewname">By Tyler S. on October 3, 2016</p> | |
<p class="reviewdescrip">Tinder has changed my life.</p> | |
</div> | |
<div id="centerlink"> | |
<a href="https://itunes.apple.com/us/app/tinder/id547702041?mt=8&ign-mpt=uo%3D6">Read More Reviews</a> | |
</div> | |
</div> | |
</div> | |
<footer> | |
<p>Mock Tinder Website made by Max Nonken for Advanced Web Design Spring 2017</p> | |
</footer> | |
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script> | |
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.12.0.min.js"><\/script>')</script> | |
<script src="js/plugins.js"></script> | |
<script src="js/main.js"></script> | |
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> | |
<script> | |
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | |
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | |
e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | |
e.src='https://www.google-analytics.com/analytics.js'; | |
r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); | |
ga('create','UA-XXXXX-X','auto');ga('send','pageview'); | |
</script> | |
</body> | |
</html> |