-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
58 lines (58 loc) · 2.62 KB
/
forms.html
File metadata and controls
58 lines (58 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en-US">
<!--Personal Project Portfolio by Adam Carnicle-Maile, Forms Page-->
<head>
<title>Forms</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="forms.css">
</head>
<body>
<header>
<h1>Forms</h1>
</header>
<nav class="nav1">
<ul>
<li><a href="index.html" target="_self" title="About Me">About Me</a></li>
<li><a href="resume.html" target="_self" title="Resume">Resume</a></li>
<li><a href="clubs.html" target="_self" title="Clubs">Clubs</a></li>
<li><a href="classprojects.html" target="_self" title="Class Projects">Class Projects</a></li>
<li><a href="forms.html" target="_self" title="Forms">Forms</a></li>
</ul>
</nav>
<div class="container">
<aside class="content1">
<nav class="formnav">
<ul>
<li><a href="contact.html" target="_self" title="Contact Form">Contact Form</a></li>
<li><a href="funform.html" target="_self" title="Fun Form">Fun Form</a></li>
</ul>
</nav><!--end formnav-->
</aside><!--end content1-->
<section class="content2">
<div class="subcontent2">
<p>
The forms on the left are an example of what I can do.
The first form is what a contact form would look like.
The second form is a form with fun questions on it.
</p>
<P>
I hope you enjoy these forms!
Fill them out at your own leisure.
</P>
</div><!--end subcontent2-->
</section><!--end content2-->
</div><!--end container-->
<footer>
<nav class="nav2">
<ul>
<li><a href="index.html" target="_self" title="About Me">About Me</a></li>
<li><a href="resume.html" target="_self" title="Resume">Resume</a></li>
<li><a href="clubs.html" target="_self" title="Clubs">Clubs</a></li>
<li><a href="classprojects.html" target="_self" title="Class Projects">Class Projects</a></li>
<li><a href="forms.html" target="_self" title="Forms">Forms</a></li>
</ul>
</nav>
</footer>
</body>
</html>