-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact2.php
More file actions
executable file
·51 lines (45 loc) · 1.38 KB
/
contact2.php
File metadata and controls
executable file
·51 lines (45 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<?include "contact2_header.php"?>
<div class="container">
<div class="content">
<div class="row" style="margin-left: 0px";>
<div class="span16">
<div class="row " style="margin-left: auto; margin-right: auto; margin-bottom: 0px">
<div class="span15" style="margin-top:0px;margin-bottom: 0px; margin-left: auto; margin-right: auto; ">
<h4 class="glow" style="font-family: 'Lucida Grande', sans-serif; text-align: center; width: 100%; font-size: 20px; font-weight: lighter; color:#444444; "> </h4>
</div>
<meta charset="utf-8" />
<title>CSS3 Contact Form</title>
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<br>
</br>
<br>
</br>
<div id="contact" style="margin-left:54px">
<form action="email.php" method="post">
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter your full name" />
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter your email address" />
<label for="message">Message:</label>
<textarea id="message" placeholder="What's on your mind?"></textarea>
<input type="submit" value="Send message" />
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<?include "bottom_pane.php"?>
<footer>
<p>© Duma 2011</p>
</footer>
</div>
</body>
</html>