Skip to content

Instantly share code, notes, and snippets.

@NerdyNerves
Created September 28, 2017 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NerdyNerves/229a630197c5257bc3222f2e1fddd147 to your computer and use it in GitHub Desktop.
Save NerdyNerves/229a630197c5257bc3222f2e1fddd147 to your computer and use it in GitHub Desktop.
Test
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RipleyCreates.com | Coming soon!</title>
<link rel="stylesheet" href="bootstrap.css" />
<link rel="stylesheet" href="animate.css" />
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet" />
<!--
Oh, hey there kind stranger. I see you're
checkin' out my code. Have questions?
You can e-mail me.
_________
|~~ @|
| ==== | ripleycreates AT gmail dot com
| ==== |
|_________|
You can check out ripleycreates.com/how.txt if
you want to learn a bit about the technologies
I used to create this site.
-->
</head>
<body>
<nav class="navbar navbar-light bg-faded">
<a class="navbar-brand" href="#">Company Logo</a>
<ul class="nav navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Work</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</nav>
<div class="container-fluid section-welcome">
<section class="welcome container vertical-center">
<h1 class="welcomeText animated bounceInDown">Welcome.</h1>
</section>
</div>
<div class="container-fluid section-about">
<section class="about container">
<h1>About</h1>
<p class="lead">This is a test. Lorem ipsum.</p>
</section>
</div>
<div class="container-fluid section-work">
<section class="work container">
<h1>Work</h1>
</section>
</div>
<div class="container-fluid section-contact">
<section class="contact container">
<h1>Contact</h1>
</section>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="bootstrap.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment