-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
127 lines (113 loc) · 6.65 KB
/
aboutus.html
File metadata and controls
127 lines (113 loc) · 6.65 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
<!DOCTYPE html>
<html>
<head>
<title>G-SHOP</title>
<link rel="icon" type="image/x-icon" href="icon.ico">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark border-bottom border-body" data-bs-theme="dark">
<div class="container-fluid d-flex justify-content-between align-items-center centered">
<div class="d-flex align-items-center">
<a class="navbar-brand" href="index.html">Techland</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="aboutus.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#bottom">Contacts</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">
Catalog
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="mice.html">Mice</a></li>
<li><a class="dropdown-item" href="keyboards.html">Keyboards</a></li>
<li><a class="dropdown-item" href="headphones.html">Headphones</a></li>
<li><a class="dropdown-item" href="mousepads.html">Mousepads</a></li>
</ul>
</li>
</ul>
</div>
</div>
<form class="d-flex nav-search" role="search" id="searchForm">
<div class="input-group">
<input class="form-control" type="search" placeholder="Search" aria-label="Search" id="searchInput">
<button class="btn btn-sm btn-outline-light" type="button"><img src="img/search.png" class="icon"></button>
</div>
</form>
<div class="d-flex align-items-center nav-right">
<a href="login.html" class="nav-right-item me-2">
<img class="icon" src="img/user.png" alt="User">
</a>
<div class="shopping">
<a class="nav-right-item ms-2">
<img class="icon" src="img/cart.png" alt="Cart">
<span class="quantity">0</span>
</a>
</div>
</div>
</div>
</nav>
<div class = "d-flex justify-content-center mt-5">
<div class = "custom-container text-white">
<p class = "text-center">
<ul class="list-group list-group-flush">
<li class="list-group-item">Welcome to our online gaming devices store, where passion meets technology! At G-SHOP, we are dedicated to providing gamers with top-notch gaming peripherals and accessories that enhance your gaming experience to new heights.</li>
<li class="list-group-item">Founded by gaming enthusiasts, we understand the unique needs of gamers. That's why we curate a carefully selected range of products from leading brands, ensuring exceptional quality, performance, and durability. Whether you're a casual gamer or a professional esports player, we have the perfect devices for you.</li>
<li class="list-group-item">Our mission is to empower gamers with the latest innovations, from high-performance gaming mice and keyboards to immersive headsets and powerful graphics cards. We pride ourselves on our commitment to customer satisfaction, offering expert advice, excellent customer support, and hassle-free shopping experience.</li>
</ul>
</p>
</div>
<div class = "d-block">
<div class="card" style="width:250px; height: 500px;">
<img class="card-img-top" src="img/assan.png" style="height: 350px;">
<div class="card-body">
<h5 class="card-title">Assan Nursapayev</h5>
<p class="card-text">Founder</p>
<a href="https://t.me/ijjjjjjjjjjjjjjjjjjjjj" target="_blank" class="btn btn-primary">Contact to Telegram</a>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
<div class="container-fluid bg-dark footer" id="bottom">
<div class="row">
<div class="col mt-3">
<form id="emailForm">
<label for="email"><strong>Subscribe to Updates</strong></label>
<div class="mb-3 mt-3">
<input type="email" class="form-control" id="email" placeholder="Enter email" name="email">
</div>
<button type="submit" id="validate" class="btn btn-outline-primary">Submit</button>
</form>
<div id="errorMessages"></div>
</div>
<div class="col">
<label for="comment" class="mb-3 mt-3"><strong>Recomendations to Improve:</strong></label>
<textarea class="form-control" rows="1" id="comment" name="text"></textarea>
<button type="submit" class="btn btn-outline-primary mt-3">Submit</button>
</div>
</div>
<ul>
<em>
<li>8 800 555 3535</li>
<li>221399@astanait.edu.kz</li>
<li>Assan | 2023</li>
<li>© All Rights Reserved</li>
</em>
</ul>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
</body>