-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
39 lines (36 loc) · 1.05 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contact</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Call me if it's urgent...</h1>
<ul>
<li>email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>phone: +381648751507</li>
<li>address: M.Crnjanskog 8</li>
<li>city: Obrenovac</li>
</ul>
<hr>
<h3>...or write me a message !!!</h3>
<form action="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Your name:</label>
<input type="text" name="Name--">
<br>
<label for="">Your email:</label>
<input type="email" name="Email--">
<br>
<label for="">Your message:</label>
<br>
<textarea name="Message--" rows="10" cols="30"></textarea>
<br>
<input type="submit" name="">
</form>
<a href="index.html">Back to Main page</a>
<br>
</body>
</html>