-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.html
86 lines (79 loc) · 2.07 KB
/
aboutus.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
<html>
<head>
<link href="aboutus.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<h1>Craft Dive</h1>
</header>
<nav>
<ul>
<li>
<a href="index.html"> Home </a>
</li>
<li>
<a href="latest.html"> Latest </a>
</li>
<li>
<a href="events.html"> Events </a>
</li>
<li>
<a href="store.html"> Store </a>
</li>
<li>
<a href="aboutus.html"> About Us </a>
</li>
<li>
<a href="joinus.html"> Join Us </a>
</li>
<li>
<a href="faq.html"> FAQ </a>
</li>
</ul>
</nav>
<section>
<h2>About us</h2>
<p>
We are an organization commited to supporting, connecting, and inspiring the art community; artists, observers, and future artists alike.
</p>
</p>
Art: something that is created with imagination and skill and that is beautiful or that expresses important ideas or feelings.
</p>
<p>
<a href="http://www.learnersdictionary.com/definition/art"> ~ Merriam Webster's definition of art </a>
<p>
We are ad-free due to funding through contributions from users and supporters of the arts.
</p>
<h2>Our Staff</h2>
<h3>Ludwin</h3>
<img src="ludwin.jpeg">
<h3>Rich</h3>
<img src="rich.jpeg">
<h3>Sarah</h3>
<img src="sarah.jpeg">
<h3>Aaron</h3>
<img src="aaron.jpeg">
<h2>Contact Us</h2>
<form action="message-form-page" method="post">
<p>
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name">
</div>
</p>
<p>
<div>
<label for="mail">E-mail:</label>
<input type="email" id="mail" name="user_mail">
</div>
</p>
<p>
<div>
<label for="msg">Message:</label>
<input id="msg" name="user_message"></input>
</div>
</p>
</form>
</section>
</body>
</html>