forked from AustinCodingAcademy/web-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (99 loc) · 3.54 KB
/
index.html
File metadata and controls
103 lines (99 loc) · 3.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Eric's Index!</title>
</head>
<body class="container-fluid">
<header>
<div class="row">
<div class="col-xs-12">
<h1>Eric Walz Portfolio Introduction</h1>
<h2>walzer85@gmail.com | 512.522.9259</h2>
</div>
</div>
</header>
<main>
<section>
<div class="row">
<div class="col-md-6 box one">
<a href="01week/helloworld/index.html">Hello, World!</a>
</div>
<div class="col-md-6 box two">
<a href="01week/resume/index.html">Eric Walz's Resume</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box three">
<a href="02week/bio/index.html">Eric Walz's Bio</a>
</div>
<div class="col-md-6 box four">
<a href="02week/blog/index.html">Sample Blog</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box five">
<a href="03week/airplane/index.html">Airplane Landing Page</a>
</div>
<div class="col-md-6 box six">
<a href="https://walzer85.github.io/index3.html">Checkpoint 1 - Cat House Percussion</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box seven">
<a href="04week/nasa/index.html">NASA Info Page</a>
</div>
<div class="col-md-6 box eight">
<a href="04week/welcome-to-our-site/index.html">Welcome to our site!</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box nine">
<a href="04week/tomorrows-technology/index.html">Tomorrow's Technology</a>
</div>
<div class="col-md-6 box ten">
<a href="05week/news-website/index.html">Bootstrap Practice - News Website</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box eleven">
<a href="05week/transitions-and-transformations/index.html">Transitions and Transformations</a>
</div>
<div class="col-md-6 box twelve">
<a href="06week/fizz-buzz/index.html">FizzBuzz!</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box thirteen">
<a href="Checkpoint-2/index.html">Checkpoint 2 - My Portfolio</a>
</div>
<div class="col-md-6 box fourteen">
<a href="07week/dom-practice/index.html">Manipulating the DOM</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box fifteen">
<a href="08week/tic-tac-toe/index.html">Tic-Tac-Toe!</a>
</div>
<div class="col-md-6 box sixteen">
<a href="09week/towers-of-hanoi/index.html">Towers of Hanoi!</a>
</div>
</div>
<div class="row">
<div class="col-md-6 box seventeen">
<a href="09week/customer-satisfaction/index.html">Forms, Forms, Forms</a>
</div>
<div class="col-md-6 box eighteen">
<a href="Checkpoint-3/index.html">Checkpoint 3 - Towers of Hanoi Vice Style</a>
</div>
</div>
</section>
</main>
</body>
</html>