-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsent_message.html
More file actions
93 lines (88 loc) · 3.52 KB
/
sent_message.html
File metadata and controls
93 lines (88 loc) · 3.52 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
<!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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>squareEye|massage sent page</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Header -->
<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="" class="logo_img" /></a>
<a href="index.html" class="header_icon home_icon gradient_bg">
<img src="images/home-icon.svg" alt="" />
<span>Home</span>
</a>
<a href="list_video_page.html" class="header_icon cart_icon gradient_bg">
<img src="images/cart-icon.svg" alt="" />
<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>
<!-- Message Sent Section -->
<section class="section message_sent_section">
<div class="container message_sent_container">
<h2>Your massage has been sent !</h2>
<h6 >We will contact you soon.Thank you !</h6>
</div>
</section>
<!--Explore More Section -->
<section class="section explore_section">
<div class="container explore_container">
<button class="button section_title gradient_bg"><span>EXPLORE MORE</span></button>
<div class="explore_more_card video_cards">
<div class="explore_more_card video_card">
<img src="images/video_cart_img_1.jpg" alt="cart img" />
<a href="video_info_page_2.html" class="explore_more_data card_data flex">
<h6 class="shopping_cart_title">Sweetheart</h6>
</a>
</div>
<div class="explore_more_card">
<img src="images/video_cart_img_3.jpg" alt="cart img" />
<a href="video_info_page_2.html" class="explore_more_data card_data flex">
<h6 class="shopping_cart_title">The Batman</h6>
</a>
</div>
<div class="explore_more_card">
<img src="images/video_cart_img_6.jpg" alt="cart img" />
<a href="video_info_page_2.html" class="explore_more_data card_data flex">
<h6 class="shopping_cart_title">Hobbs&Shaw</h6>
</a>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="sent_message 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>