-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
148 lines (147 loc) · 6.83 KB
/
about.html
File metadata and controls
148 lines (147 loc) · 6.83 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
<!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">
<title>TechFlow</title>
<link rel="icon" type="image/x-icon" href="resources/logo.ico">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/d47567f1a7.js"
crossorigin="anonymous"></script>
</head>
<body>
<!--Navbar-->
<nav class="navbar">
<div class="navbar_container">
<a href="index.html" id="navbar_logo">
<img src=resources/logo_techflow.png id="image_logo">
</a>
<div class="navbar_toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar_menu">
<li class="navbar_item">
<a href="index.html" class="navbar_links"
id="home-page">Home</a>
</li>
<li class="navbar_item">
<a href="about.html" class="navbar_links"
id="about-page">About</a>
</li>
<li class="navbar_item">
<a href="shop.html" class="navbar_links" id="shop-page">Shop</a>
</li>
<li class="navbar_item cart_inc">
<a href="cart.html" class="navbar_links" id="cart"><i
class="fa-solid fa-cart-shopping"></i>Cart<span>0</span></a>
</li>
</ul>
</div>
</nav>
<!--About-->
<div class="main" id="about">
<div class="main_container">
<div class="main_img_container">
<div class="main_img_card"><i class="fa-solid fa-computer"></i></div>
</div>
<div class="main_content">
<h2>Who We Are</h2>
<h1>TechFlow is a PC hardware company founded by a group of
technology enthusiasts with a passion for providing
top-quality hardware to the masses. Our mission is to
make technology accessible to everyone, and we believe
that PC hardware should be affordable without
compromising on quality.</h1>
<button class="main_btn"><a href="#">Contact Us</a></button>
</div>
</div>
<div class="main_container">
<div class="main_content">
<h2>Our Products</h2>
<h1>We carefully select our products to ensure that they
meet our high standards for performance, reliability,
and value. We work closely with top manufacturers in the
industry to bring you the latest and greatest hardware,
from CPUs and GPUs to motherboards, RAM, and storage
devices. Our products are designed to cater to every
need and budget, whether you're a casual PC user or a
professional gamer.</h1>
</div>
<div class="main_img_container">
<div class="main_img_card"><i class="fa-solid fa-box-open"></i></div>
</div>
</div>
<div class="main_container">
<div class="main_img_container">
<div class="main_img_card"><i class="fa-solid
fa-people-group"></i></div>
</div>
<div class="main_content">
<h2>Our Services</h2>
<h1>At TechFlow, we don't just sell hardware - we also offer
a range of services to help you get the most out of your
PC. Our team of experts can assist you with custom PC
builds, upgrades, repairs, and maintenance. We're
dedicated to providing top-notch customer service and
expert advice to help you make the right choices for
your PC.</h1>
</div>
</div>
</div>
<!-- Scroll-->
<div class="scroll_top" onclick="scrollToTop()">Top</div>
<!--Footer-->
<div class="footer_container">
<div class="footer_links">
<div class="footer_link_wrapper">
<div class="footer_link_items">
<h2>About us</h2>
<a href="">Who We Are</a>
<a href="">Our Products</a>
<a href="">Our Services</a>
<a href="">Terms of Service</a>
</div>
<div class="footer_link_items">
<h2>Contact us</h2>
<a href="">Contact</a>
<a href="">Support</a>
</div>
</div>
<div class="footer_link_wrapper">
<div class="footer_link_items">
<h2>Social Media</h2>
<a href="">Instagram</a>
<a href="">Facebook</a>
<a href="">Youtube</a>
<a href="">Twitter</a>
</div>
</div>
</div>
<section class="social_media">
<div class="social_media_wrap">
<div class="footer_logo">
<p id="footer_logo">TechFlow</p>
</div>
<p class="website_rights">© TechFlow 2023. All rights
reserved</p>
<div class="social_icons">
<a href="" class="social_icon_link" target="_blank"><i
class="fab fa-facebook"></i></a>
<a href="" class="social_icon_link" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="" class="social_icon_link" target="_blank"><i
class="fab fa-youtube"></i></a>
<a href="" class="social_icon_link" target="_blank"><i
class="fab fa-twitter"></i></a>
</div>
</div>
</section>
</div>
<script src="js/dropdown.js"></script>
<script src="js/addcart.js"></script>
<script src="js/totop.js"></script>
</body>
</html>