-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (51 loc) · 1.83 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
<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8">
<title>Udacity FEND - Edgar Quintero</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<style>
body {
font-family: 'Roboto Slab', serif;
background-color: black;
color: #fff;
}
.container {
display: block;
width: 860px;
margin: 50px auto;
}
a {
color: #fff;
}
a:hover {
text-decoration: none;
}
.cool-text {
border-bottom: 1px solid #fff;
padding-bottom: 2px;
}
.cool-text a {
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to my <span class="cool-text"><a href="https://www.udacity.com/course/front-end-web-developer-nanodegree--nd001" target="_blank">FEND NANODEGREE</a></span> course!</h1>
<p>Links to each of the courses are found below.</p>
<ul>
<li><a href="1st-mock-up-article/">Mockup Article</a></li>
<li><a href="2nd-animal-trading-cards/">Animal Trading Cards</a></li>
<li><a href="3rd-build-portfolio-site/">Build a Portfolio Site</a></li>
<li><a href="4th-resume/">Resume</a></li>
<li><a href="5th-classical-arcade/">Classical Arcade Game</a></li>
<li><a href="6th-website-optimization/src/">Website Optimization Part 1</a></li>
<li><a href="6th-website-optimization/src/views/pizza.html">Website Optimization Part 2</a></li>
<li><a href="minicourse-ajax-project">Mini Ajax App</a></li>
<li><a href="cats-app">Cats App</a></li>
<li><a href="todo-app">Todo App</a></li>
</ul>
</div>
</body>
</html>