-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.34 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Epicodus Workshop Project</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="js/scripts.js"></script>
<title>Epicodus Workshop Project</title>
</head>
<body>
<div class="container">
<h1>My Programming Goals</h1>
<p>Every journey is easier if you <strong>know where you're going.</strong> <em>-unknown
</em></p>
<img id="picture" src="https://images.unsplash.com/photo-1508349937151-22b68b72d5b1?ixlib=rb-1.2.1&w=1000&q=80" />
<h3>My Goals</h3>
<p>
I want to become a professional web developer. Here are the things I'll need to learn first.
</p>
<div class="form-group">
<label>New Goal</label>
<input type="text" id="new-goal">
<button class="btn" type="button" id="goal-button">Add Goal</button>
</div>
<ul id="goal-list">
<li class="list-item">Learn HTML</li>
<li class="list-item" id="css-item">Learn CSS</li>
<li class="list-item">Learn JavaScript</li>
<li class="list-item">Learn Git</li>
</ul>
<h3>My favorite website</h3>
<h4><a href="http://www.google.com">Google</a></h4>
</div>
</body>
</html>