-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 916 Bytes
/
index.html
File metadata and controls
37 lines (31 loc) · 916 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>replit</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>JavaScript for Week 5</h1>
<p>
Each day you will learn a new bit of JavaScript. Fork this repository or repl. Then go to the page for each day. You
will read the material and then make changes where you see <strong>"You try it!"</strong>
</p>
<p> You may need to add JavaScript and HTML tags to each page to complete the assignments.</p>
<ul>
<li>
<a href="day-1.html">Day 1:</a> Strings, types, interpolation and variables
</li>
<li>
<a href="day-2.html">
Day 2:
</a> Input from prompt
</li>
<li>
<a href="day-3.html">Day 3: </a>
Concatenating Strings</li>
</ul>
<script src="script.js"></script>
</body>
</html>