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?
teamof2/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.
59 lines (51 sloc)
1.74 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Team of 2 Dev</title> | |
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300,600,400italic,300italic,600italic,700italic' rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="css/animate.css"> | |
<link rel="stylesheet" href="css/simplegrid.css"> | |
<link rel="stylesheet" href="css/main.css"> | |
</head> | |
<body> | |
<div class="container full-height"> | |
<section class="grid grid-pad" id="main"> | |
<div class="col-7-12"> | |
<div class="content"> | |
<div class="col-1-1 box name anim first"> | |
<h1 class="h-large">#94 Nicholas Lensander</h1> | |
</div> | |
<div class="col-1-1 anim first saying"> | |
<p><em>Team member by day, athlete by night.</em></p> | |
</div> | |
<div class="col-1-1 fullbox anim mobile-photo first"> | |
<img src="img/bg.jpg" alt="Nick"> | |
</div> | |
<div class="col-1-1 box stat anim second"> | |
<p>Tight End</p> | |
</div> | |
<div class="col-1-1 box stat anim third"> | |
<p class="anim third">RS Junior</p> | |
</div> | |
<div class="col-1-1 box stat anim fourth"> | |
<p class="anim fourth">Santa Barbara, Calif.</p> | |
</div> | |
<div class="col-1-1 box stat anim fifth"> | |
<p class="anim fifth">6-4 / 230lbs.</p> | |
</div> | |
<div class="col-1-1 box wordmark anim sixth"> | |
<h3 class="h-medium">Digital Media & Design - Business Strategies</h3> | |
</div> | |
<div class="col-1-1 logo-contain anim sixth"> | |
<img src="img/ation_vector.png" alt="-ATION Digital Media"> | |
</div> | |
</div> | |
</div> | |
</section> | |
</div> | |
<script src="js/jquery-2.2.2.min.js"></script> | |
<script src="js/main.js"></script> | |
</body> | |
</html> |