Created
November 22, 2018 05:04
-
-
Save carsonfarmer/090499159600144df321983ecdf1d0d3 to your computer and use it in GitHub Desktop.
Profile App Skeleton View
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> | |
<meta charset="utf8"> | |
<title>IPNS Profile App</title> | |
<link rel="stylesheet" href="./style.css"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/solid.css" integrity="sha384-wnAC7ln+XN0UKdcPvJvtqIH3jOjs9pnKnq9qX68ImXvOGz2JuFoEiCjT8jyZQX2z" | |
crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/brands.css" integrity="sha384-nT8r1Kzllf71iZl81CdFzObMsaLOhqBU1JD2+XoAALbdtWaXDOlWOZTR4v1ktjPE" | |
crossorigin="anonymous"> | |
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/fontawesome.css" integrity="sha384-HbmWTHay9psM8qyzEKPc8odH4DsOuzdejtnr+OFtDmOcIVnhgReQ4GZBH7uwcjf6" | |
crossorigin="anonymous"> | |
</head> | |
<body> | |
<div id="loader"></div> | |
<div id="main"> | |
<div id="image"></div> | |
<div id="profile"> | |
<h1 id="name"> | |
<span id="first"></span> | |
<span id="last"></span> | |
</h1> | |
<div id="work"> | |
<ul> | |
<li> | |
<h2 class="job"> | |
<span class="title"></span> at <span class="employer"></span> | |
</h2> | |
</li> | |
</ul> | |
</div> | |
<div id="bio"></div> | |
<div id="social"> | |
<ul> | |
<li><a><i></i></a></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<script src="bundle.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment