-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
83 lines (70 loc) · 2.64 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
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
<!DOCTYPE html>
<html>
<head>
<title>Travel Blogs!!</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans&display=swap" rel="stylesheet">
</head>
<body class="sampleBG">
<header>
<div class="inner_header">
<div class="logo_container">
<span class="logo_top"><a href="index.html"><img src="images/logo.png"></a><span>
</div>
<div class = "nav">
<ul>
<li><a href="index.html" class="underline_effects">HOME</a></li>
<li><a href="aboutme.html" class="underline_effects">ABOUT ME</a></li>
<li><a href="journey.html" class="underline_effects">MY JOURNEY</a></li>
<li><a href="contact.html" class="underline_effects">CONTACT</a></li>
</ul>
</div>
</div>
</header>
<main>
<div class="contact_bgimg">
<p class="contact_text">get in touch</p>
<p class="contact_catchPhrase">Don't be a stranger say hello!</p>
</div>
<div class="contact">
<div class="contactForm">
<div class="contact_catchPhrase2">
<span class="joinMe">Join me!</span>
<p><span class="phraseIntro">Lorem ipsum dolor</span> sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat.</p>
<img class="contact_img" src="images/contact2.jpg">
</div>
<div class="contact-form">
<div class="txtb">
<label>Full Name :</label>
<input type="text" name="" value="" placeholder="Enter Your Name Here">
</div>
<div class="txtb">
<label>Email :</label>
<input type="email" name="" value="" placeholder="Enter Your Email Here">
</div>
<div class="txtb">
<label>Phone Number :</label>
<input type="text" name="" value="" placeholder="Enter Your Phone Number Here">
</div>
<div class="txtb">
<label>Message :</label>
<textarea placeholder="Your story here"></textarea>
</div>
<input class="btn" type="submit" value="Submit">
</div>
</div>
</div>
</main>
<div class="footer footer_aboutMe">
<p><span class="myName">MICHAEL MALALAY</span> © 2020 ENJOYING MOMENTS | ALL RIGHTS RESERVED |
<a href = "#"><img class="icon" src="images/icons/fb_icon.png"></a>
<a href = "#"><img class="icon" src="images/icons/ig_icon.png"></a>
<a href = "#"><img class="icon"src="images/icons/pinterest_icon.png"></a>
<a href = "#"><img class="icon"src="images/icons/yt_icon.png"></a>
</p>
</div>
</body>
</html>