-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
101 lines (96 loc) · 4.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
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
91
92
93
94
95
96
97
98
99
100
101
<!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">
<!-- CSS LINK -->
<link rel="stylesheet" href="script.css">
<link rel="stylesheet" href="script.js">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Contact | Karthik</title>
</head>
<body>
<!-------------------------------------------- HEADER SECTION -->
<header class="header" >
<a href="#" class="logo">
<img src="./images/image.png" alt="logo">
</a>
<nav class="navbar">
<a href="./index.html">home</a>
<a href="./about.html">about</a>
<a href="./menu.html" >menu</a>
<a href="./projects.html" >projects</a>
<a href="./review.html" >review</a>
<a href="./contact.html" class="active">contact</a>
<a href="./blog.html">blog</a>
</nav>
<div class="buttons">
<button id="search-btn">
<i class="fas fa-search"></i>
</button>
<button id="menu-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="search-form">
<input type="text" class="search-input" id="search-box" placeholder="Search">
<i class="fas fa-search"></i>
</div>
</div>
</header>
<!-- -------------------------------------------HEADER SECTION -->
<!-- -------------------------------------------CONTACT SECTION -->
<section class="contact" id="contact_id">
<h1 class="heading">contact <span>us</span> </h1>
<div class="row">
<iframe class="map" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d983.3235940970079!2d8.540719273659763!3d47.3713194174677!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47900a00aa1e1d17%3A0x278f576acdd580f5!2sStorchen%20Z%C3%BCrich%20-%20Lifestyle%20Boutique%20Hotel!5e0!3m2!1sde!2sch!4v1658505945506!5m2!1sde!2sch" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<form>
<h2>Let us know/h2>
<div class="inputBox">
<i class="fas fa-user"></i>
<input type="text" placeholder="name">
</div>
<div class="inputBox">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="email">
</div>
<div class="inputBox">
<i class="fas fa-phone"></i>
<input type="number" placeholder="number">
</div>
<input type="submit" class="btn" value="contact now">
</form>
</div>
</section>
<!-- -------------------------------------------CONTACT SECTION -->
<!-- -------------------------------------------FOOTER SECTION -->
<section class="footer">
<div class="search">
<input type="text" class="search-input" placeholder="Search">
<button class="btn btn-primary">search</button>
</div>
<div class="share">
<a href="#" class="fab fa-facebook"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
<div class="links">
<a href="#home">home</a>
<a href="#about">about</a>
<a href="#menu">menu</a>
<a href="#products">products</a>
<a href="#review">review</a>
<a href="#contact">contact</a>
<a href="#blog">blog</a>
</div>
<div class="credit">
creaated by <span>karthik</span> | all rights reserved!
</div>
</section>
<!-- -------------------------------------------FOOTER SECTION -->
<script src="./script.js"></script>
</body>
</html>