-
Notifications
You must be signed in to change notification settings - Fork 27
/
index.html
108 lines (84 loc) · 2.62 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Create a navigation -->
<nav>
<ul>
<li><a href="#"">Home</a></li>
<li><a href="#"">About</a></li>
<li><a href="#"">Contact</a></li>
</ul>
</nav>
<!-- Add a header with page heading -->
<!-- Your main section will hold all your main page content -->
<main>
<!-- Create a section with paragraph text about yourself -->
<section></section>
<!-- insert an image within the figure element relating to you -->
<figure>
<!-- Use the figcaption element for a caption to your image -->
<figcaption></figcaption>
</figure>
<!-- add aside content of your choice, could be a paragraph, lists -->
<aside></aside>
<!-- Create a table with your daily schedule -->
<!-- add a table title -->
<!-- add atleast 2 table headings (Time and Event) -->
<!-- Populate the table with your info -->
<section class="container">
<table>
<thead></thead>
<tbody>
<tr>
<td class="left"><h3></h3></td>
<td></td>
</tr>
<tr>
<td class="left"><h3></h3></td>
<td></td>
</tr>
<tr>
<td class="left"><h3></h3></td>
<td></td>
</tr>
<tr>
<td class="left"><h3></h3></td>
<td></td>
</tr>
<tr>
<td class="left"><h3></h3></td>
<td></td>
</tr>
</tbody>
</table>
</section>
<!-- Create a contact form -->
<section id="main">
<h1>Contact me!</h1>
<hr />
<!--Add your form below:-->
<form>
<!--Text entry-->
<!-- You'll need 3 labels/inputs to accept the following:
1. Name, 2. Email, 3. Subject -->
<!--Create Radio button-->
<!-- We want to ask the user if they would like a response back-->
<span>Would you like a response back?</span>
<!-- Create 2 radio buttons for Yes & No options-->
<!-- Create a textbox for user to type a message -->
<!-- (Challenge) For Textbox, can use minlength/maxlength or regex to limit-->
<br />
<!-- Add a submit button -->
</form>
</section>
</main>
<!-- Customize your footer with text of your choice -->
<footer>
<p></p>
<p></p>
</footer>
</body>
</html>