-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
64 lines (53 loc) · 2.6 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
<!DOCTYPE html>
<html>
<head>
<title>Simple Brand Page</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" type="text/css" href="styles/css-reset.css">
<link rel="stylesheet" type="text/css" href="styles/contact-main.css">
<link rel="stylesheet" type="text/css" href="styles/contact-layout.css">
<link rel="stylesheet" type="text/css" href="styles/contact-components.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/e0912a4246.js" crossorigin="anonymous"></script>
</head>
<body class="page-container">
<div class="page-content">
<header>
<div class="header-wraper">
<div class="logo-wraper"><img class="logo" src="assets/logo_50.svg"></div>
<ul class="header-nav float-right">
<li>Home</li>
<li>About</li>
<li>Pricing</li>
<li>Contact</li>
</ul>
</div>
</header>
<div class="center-wraper">
<div class="grid-wraper">
<div class="main-content">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3304.4543191796474!2d-118.31181538478424!3d34.08350008059744!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x80c2b8afc006b421%3A0x60ad8cecd5b7add0!2s3481%20Melrose%20Ave%2C%20Los%20Angeles%2C%20CA%2090038%2C%20Egyes%C3%BClt%20%C3%81llamok!5e0!3m2!1shu!2shu!4v1614606936424!5m2!1shu!2shu" width="420" height="280" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
<h4>Address</h4>
<p class="paragraph">3481 Melrose Avenue, <br>Beverly Hills, CA 90210, USA</p>
<h4>(123) 456-7890</h4>
<h4>name@example.com</h4>
<i class="fab fa-facebook-f icon icon--small"></i>
<i class="fab fa-instagram icon icon--small"></i>
<i class="fab fa-twitter icon icon--small"></i>
</div>
<div class="main-content">
<h1>Contact Us</h1>
<p class="paragraph">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</p>
<input class="input" type="text" placeholder="Name">
<input class="input" type="text" placeholder="Enter Email">
<textarea class="textarea" rows="4" placeholder="Enter your Message..."></textarea>
<button class="btn">Submit</button>
</div>
</div>
</div>
</div>
<footer>
<small class="copyright">© 2020 Copyright <a>Brand Name</a> / Design by <a>Robert Toth</a></small>
</footer>
</body>
</html>