-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
105 lines (55 loc) · 2.38 KB
/
about.html
File metadata and controls
105 lines (55 loc) · 2.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>algorithm & co. | alchemical web design</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id = "about">
<h1>algorithm & co.</h1>
<h2>alchemical web design</h2>
<br>
<form name="contactform" method="post" action="send_form_email.php">
<table width="600px" id = "contact-form">
<tr>
<td valign="top">
<label for="name"></label>
</td>
<td valign="top">
<input type="text" name="name" placeholder="name" style="text-align: center; height: 30px;" maxlength="50" size="50">
</td>
</tr>
<td valign="top">
<label for="email"></label>
</td>
<td valign="top">
<input type="text" name="email" placeholder="email" style="text-align: center; height: 30px;" maxlength="80" size="50">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone"></label>
</td>
<td valign="top">
<input type="text" name="telephone" placeholder="phone" style="text-align: center; height: 30px" maxlength="30" size="50">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments"></label>
</td>
<td valign="top">
<textarea name="comments" placeholder="How can we help you?" style = "margin-top: 20px; padding: 10px;" maxlength="1000" cols="60" rows="15"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center; padding-top: 20px;">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>