-
Notifications
You must be signed in to change notification settings - Fork 0
/
form_contact.html
90 lines (88 loc) · 3.38 KB
/
form_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
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,500;0,700;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Contact Us</title>
</head>
<body>
<header>
<div class="container">
<div class="navtoggle" id="myNavtoggle">
<img class="logo" src="img/logo/logo-cs.jpg" alt="Christina Silitonga Logo">
<nav>
<ul>
<a href="reservation.html" class="button">Book Now</a>
</nav>
</ul>
<nav>
<ul>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="index.html">Property</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li><a href="javascript:void(0);" class="icon" onclick="menuToggle()"><i class="fas fa-bars"></i></a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<section>
<div class="container">
<h1>Contact Us</h1>
</div>
</section>
<section class="Our Contact">
<div class="container">
<div class="row">
<div class="column col-md-12 col-lg-7">
<p>Let's keep in touch, stay in contact and work together.
I look forward to hearing from you, feel free to contact me, and we provide you our services.
</p>
<!--form_contact and Placeholders-->
<form>
<label for="Your_Name">Your Name</label>
<input type="text"placeholder="Your_Name" value="Your_Name" id="Your_Name"</input>
<br>
<label for="Your_Message">Your Message</label> <br>
<textarea cols="80" rows="7" id="Your_Message">Your Message</textarea>
</form>
<br>
<br>
<input type="submit" name="" value="Send">
<br> <br> <br>
<div class="contact">
<a href="form_contact.html" class="button">Send Email</a>
<a href="+628116261981" target="_blank" class="button">Call Us</a>
</div>
<div class="social">
<!--Social Media Layout and Placeholders-->
<a href="https://www.linkedin.com/in/christina-silit/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://twitter.com/ChristinaSlt03" target="_blank">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.behance.net/christisiliton" target="_blank">
<i class="fab fa-behance"></i>
</a>
</div>
<p class="copy">Copyright Christina Silitonga 2021</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="js/script.js"></script>
</body>
</html>