-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact_us.html
More file actions
158 lines (152 loc) · 5.3 KB
/
contact_us.html
File metadata and controls
158 lines (152 loc) · 5.3 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content="html, css" />
<meta name="author" content="Ramesh Ghimire" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>squareEye|contact_us</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Header/navbar starts here -->
<header class="header">
<nav class="container navbar">
<span class="home_line_left line"></span>
<div class="navbar_content row flex">
<div class="logo_items flex">
<a href="index.html"
><img src="images/logo.svg" alt="logo img" class="logo_img"
/></a>
<a href="index.html" class="header_icon home_icon gradient_bg">
<img src="images/home-icon.svg" alt="squareeye logo" />
<span>Home</span>
</a>
<a
href="list_video_page.html"
class="header_icon cart_icon gradient_bg"
>
<img src="images/cart-icon.svg" alt="cart icon img" />
<span>Shop</span>
</a>
</div>
<!-- Menu Items -->
<ul class="menu_items flex">
<li class="item">
<a href="contact_us.html" class="link">Contact</a>
</li>
<li class="item">
<a href="about_us.html" class="link">About</a>
</li>
<li class="item">
<a href="signin.html" class="link">SignIn</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Header/navbar ends here -->
<!-- Contact Us Section -->
<section class="section contact_us_section">
<div class="container contact_us_container">
<div class="social_media">
<h6>Contact Us</h6>
<a href="#"><img src="images/youtube-icon.svg" alt="youtubeImg" /></a>
<a href="#"><img src="images/twitter-icon.svg" alt="twitterImg" /></a>
<a href="#"
><img src="images/instagram-icon.svg" alt="instagrameImg"
/></a>
</div>
<div class="row contact_row flex">
<div class="left_column">
<form class="contact_us_form" action="sent_message.html">
<div class="input_field">
<label>E-mail</label>
<input
type="email"
placeholder="your@emailadress.com"
id="email_input"
/>
</div>
<div class="input_field">
<label>First Name</label>
<input type="text" placeholder="your name" />
</div>
<div class="input_field">
<label>Last Name</label>
<input type="text" placeholder="your lastName" />
</div>
<div class="input_field">
<label>Message</label>
<textarea placeholder="Message"></textarea>
</div>
<button class="button">Send Message →</button>
</form>
</div>
<div class="right_column">
<img
src="images/contact_us_img.jpg"
alt="contact_us_img"
class="contact_us_img"
/>
</div>
</div>
</div>
</section>
<!-- Contact Us Page Section -->
<section class="section contact_us_section">
<div class="container contact_container">
<div class="row flex">
<div class="left_column">
<div class="visit_us_data">
<h6>Visit us at our office:</h6>
<p>
You are welcome to visit our office <br />
@ Oslo shopping Senter <br />
<br />
SquareEyes AS <br />
Osloveien 12 1299 Oslo <br /><br />
Phone +47 9999999 <br />
E-mail: squareeye@squareeye.no
</p>
</div>
</div>
<div class="right_column">
<div class="contact_us_map map contact_map">
<img src="images/map.jpg" alt="map" />
</div>
</div>
</div>
</div>
</section>
<!-- Contact Us Message -->
<section class="section contact_us_msg_section">
<div class="container contact_us_msg_container">
<h6>
It has never been this easy to contact us <br />
<br />
you are one click away. Connect with us
</h6>
<br />
<p>
Please feel free to connncet with us, our team <br />
would like to help you with any regards with SquareEyes
</p>
</div>
</section>
<!-- Footer Section -->
<footer class="footer footer_section">
<div class="footer_container container flex">
<div class="social_media">
<a href="#"><img src="images/youtube-icon.svg" alt="youtubeImg" /></a>
<a href="#"><img src="images/twitter-icon.svg" alt="twitterImg" /></a>
<a href="#"
><img src="images/instagram-icon.svg" alt="instagrameImg"
/></a>
<div>©SquareEyes 2023-design and develop by Ramesh !</div>
</div>
</div>
</footer>
</body>
</html>