-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
39 lines (39 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body style="padding-top: 70px;">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="/">Node App</a>
<ul class="nav navbar-nav navbar-right">
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1>Grayson Cooper's Node App</h1>
<p>This is a simple web app I made to learn about node.js, html, css, express, and heroku</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h3>Styles </h3>
<p>Trying to figure out how to make a web page look decent because it's hard to design things</p>
</div>
<div class="col-md-4">
<h3>Learning</h3>
<p>Please excuse the simplicity of this web app</p>
</div>
<div class="col-md-4">
<h3>Another section??</h3>
<p>How can I possibly fill out this with stuff</p>
</div>
</body>
</html>