-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (110 loc) · 4.4 KB
/
index.html
File metadata and controls
123 lines (110 loc) · 4.4 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<!--this is my google font-->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<!--style sheet link-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--bootstrap links-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<header>
<!--navbar beginning-->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#example-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Portfolio</a>
</div>
<!-- Collect the nav links for toggling -->
<div class="collapse navbar-collapse" id="example-navbar-collapse">
<ul class="nav navbar-nav navtext center pull-right ">
<li>
<a href="#hero">Main</a>
</li>
<li>
<a href="https://ethancrowley.github.io/web-workbook/01week/resume/index.html" target="_blank">Resume</a>
</li>
<li>
<a href="https://ethancrowley.github.io/web-workbook/02week/nasa/index.html "target="_blank">NASA</a>
</li>
<li>
<a href="https://ethancrowley.github.io/web-workbook/04week/checkpoint/index.html "target="_blank">Bowls</a>
</li>
<li>
<a href="https://ethancrowley.github.io/web-workbook/07week/Checkpoint2/index.html "target="_blank">Foundry</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
</header>
<body>
<section id="hero" class="container-fluid">
<div class="row">
<div class="col-md-12">
<h3>html</h3>
<h1>ethan crowley</h1>
<h3>css</h3>
</div>
</div>
</section>
<section id="parallax1" class="container-fluid">
<div class="row">
<div class="col-md-12">
</div>
</div>
</section>
<section id="mission" class="container-fluid">
<div class="row">
<div class="col-md-12">
</div>
<h3>Responsive web design for your business</h3>
<p>Problem-identifier and problem-solver</p>
</div>
</section>
<section id="parallax2" class="container-fluid">
<div class="row">
<div class="col-md-12">
</div>
</div>
</section>
<section id="blurb" class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2>Friendly, approachable, knowledgeable</h2>
<p>let's plan your site over a beer on me</p>
</div>
</div>
</section>
<section id="parallax3" class="container-fluid">
<div class="row">
<div class="col-md-12">
</div>
</div>
</section>
<section id="contact" class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2>Contact Info</h2>
<p>e-mail:ethan.j.crowley@gmail.com</p>
<p>phone:806.252.5019</p>
</div>
</div>
</section>
<!-- these are my javascript files-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>