-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathExercise 2.html
More file actions
80 lines (78 loc) · 2.73 KB
/
Exercise 2.html
File metadata and controls
80 lines (78 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My super blog</title>
</head>
<body>
<header>Inside of header - let's add a navbar with soome essential links</header>
<nav>
<p id="navlist">
<u><a href="#">Home</a></u>
<u><a href="#">About</a></u>
<u><a href="#">Contact</a></u>
</p>
</nav>
<h3>Here is the main section of our page - It consist </h3>
<h3>Article - 1995 was a pretty year for programming languages!</h3>
<p>Don't believe me? Just check this table out:</p>
<table>
<tr>
<th>Language</th>
<th>Designed by</th>
<th>First Appeared</th>
</tr>
<tr>
<td>C++</td>
<td>Bjarne Stroustrup</td>
<td>1983</td>
</tr>
<tr>
<td>Python</td>
<td>Guido van Rossum</td>
<td>1991</td>
</tr>
<tr>
<td>Ruby</td>
<td>Yukihiro Matsumoto("Matz")</td>
<td>1995</td>
</tr>
<tr>
<td>Javascript</td>
<td>Brendan Eich</td>
<td>1995</td>
</tr>
<tr>
<td>Java</td>
<td>James Gosling</td>
<td>1995</td>
</tr>
<tr>
<td>PHP</td>
<td>Rasmus Lerdorf</td>
<td>1995</td>
</tr>
</table>
<h3>Article 2 - Coming soon...</h3>
<h3>Contact us!</h3>
<h3>General Information</h3>
<form>
<label>
First Name<input type="text">
<br>
Last Name<input type="text">
<br>
Email<input type="text">
<br>
Date of Birth<input type="date">
</label>
</form>
<h2>Essential Questions</h2>
<p>What kind of work do you need?
<br>Programing:<input type="checkbox"> <br>Design: <input type="checkbox"><br>Singing:<input type="checkbox"><br>Comedy:<input type="checkbox"></p>
<p>How interested are you in your design skills?
<br>Very low:<input type="checkbox"><br>Low:<input type="checkbox"><br>Medium:<input type="checkbox"><br>High:<input type="checkbox"><br>Very High:<input type="checkbox"></p>
<br><input type="submit" value="Submit me!">
</body>
<footer>This is our footer - lets make sure we copyright © this!</footer>
</html>