-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (38 loc) · 1.18 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
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="logo">
<img src="img/logo.jpg">
</div>
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li class="current"><a href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
<div class="nemo">
<h1>Contact Me</h1>
<p>
If you are interested in doing researches about animals you also can join with me.And also share your ideas and suggestions with me.If you will be able to see any rare animal species,inform me i'm fond of studing further about them.
</p>
</div>
<div class="form">
<form>
<input type="text" placeholder="Name"/>
<input type="text" placeholder="E-Mail"/>
<input type="text" id="msg" placeholder="Message"/>
</form>
<button type="button">Let's Talk</button>
</div>
</div>
</body>
</html>