-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
44 lines (42 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Match Up</title>
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<section class="navbar" >
<div class="navbar-left">
<img style="margin-left: 7%;" class="logo" src="css/img/logo.png" alt="">
<!-- <div style="margin-left: 7%;" class="logo">
</div> -->
<a class="home" href="home.html" >Home</a>
<a class="tentang" href="about.html" style="color: #FE6B00;;" >tentang</a>
<a class="kontak" href="contact.html" >Kontak</a>
</div>
<div class="navbar-right">
<a class="sign-up" href="signup.html">Sign Up</a>
<a class="log-in" style="margin-right: 20%; margin-left: 5%; background-color: #FE6B00;; color: white; " href="login.html">Log In</a>
</div>
</section>
<section class="contact">
<div class="contact-1-left">
<img src="css/img/contact-image.png" alt="">
<!-- <div class="image1">
</div> -->
</div>
<div class="contact-1-right">
<p style="font-size: 60px;" >KONTAK</p>
<form action="">
<input class="input-form" type="text" name="name" placeholder="Nama Penulis...">
<input class="input-form" type="text" name="email" placeholder="Alamat Email...">
</form>
<textarea style="margin-bottom: 20px;" name="saran" cols="30" rows="10" placeholder="Saran atau Kritik..."></textarea>
<button style="height: 40px; font-size: 20px; text-transform: uppercase; font-family: opensans-bold; background-color: #FE6B00; border: transparent; color: white; " >Kirim Pesan</button>
</div>
</section>
</body>
</html>