forked from AustinCodingAcademy/web-workbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (85 loc) · 2.96 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Christine Tsai's Web Development Professional Resume</title>
<link href="https://fonts.googleapis.com/css?family=Cardo|Montserrat" rel="stylesheet">
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<header>
<h1>Christine Tsai</h1>
<h3>Intro. to HTML/CSS: Projects and Homework</h3>
</header>
<main>
<!-- WEEK 1 -->
<section id="weekOne" class="projects">
<h4>Week 1</h4>
<a href="01week/resume/index.html">Resume</a><br>
<a href="01week/bio/index.html">Biography</a>
</section>
<!-- WEEK 2 -->
<section id="weekTwo" class="projects">
<h4>Week 2</h4>
<a href="02week/nasa/index.html">NASA landing page</a>
</section>
<!-- WEEK 3 -->
<section id="weekThree" class="projects"></section>
<h4>Week 3</h4>
<a href="03week/planet/index.html">Daily Planet</a><br>
<a href="03week/blog/index.html">Blog</a><br>
<a href="03week/newspaper/index.html">Newspaper</a>
<!-- WEEK 4 - Checkpoint 1 + Media Queries -->
<section id="weekFour" class="projects"></section>
<h4>Week 4</h4>
<a href="04week/01checkpoint/index.html">Checkpoint 1</a><br>
<a href="04week/welcome/index.html">Welcome</a>
<!-- WEEK 5 - Bootstrap -->
<section id="weekFive" class="projects"></section>
<h4>Week 4</h4>
<a href="05week/BootstrapGridProject/index.html">Restaurant</a><br>
<a href="05week/BootstrapResponsiveUtilityProject/index.html">Bootstrap Responsive Utility Project</a>
<!-- WEEK 6 - Forms -->
<section id="weekSix" class="projects"></section>
<h4>Week 6</h4>
<a href="06week/forms/index.html">Forms</a><br>
<!-- WEEK 7 - Checkpoint 2 -->
<section id="weekSeven" class="projects"></section>
<h4>Week 7</h4>
<a href="07week/Checkpoint2/index.html">Checkpoint 2</a><br>
<!-- WEEK 8 - FizzBuzz + Redirect pages -->
<section id="weekEight" class="projects"></section>
<h4>Week 8</h4>
<a href="08week/FizzBuzz/index.html">FizzBuzz</a><br>
<a href="08week/Redirect/index.html">Redirect Example</a><br>
<a href="08week/winedirect/index.html">Foundry Redirect</a><br>
<!-- WEEK 9 - tic-tac-toe -->
<section id="weekNine" class="projects"></section>
<h4>Week 09</h4>
<a href="09week/tic-tac-toe/index.html">Tic-tac-toe</a><br>
<!-- WEEK 10 - Portfolio -->
<section id="weekTen" class="projects"></section>
<h4>Week 10</h4>
<a href="10week/portfolio/index.html">Portfolio</a><br>
</main>
<br/>
<footer>2017</footer>
<!-- Javascript linked from EXTERNAL FILE -->
<script type="text/javascript" src="js/file.js"></script>
</body>
</html>
<!--
<!DOCTYPE html>
<html>
<head>
<title>Luke's Web Development Professional Resume</title>
</head>
<body>
<section></section>
<div>
<p>
<img src="http://i.imgur.com/Q79ov8b.jpg"/>
</p>
<a href="http://google.com">Google</a>
</div>
</body>
</html> -->