-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (95 loc) · 5.12 KB
/
index.html
File metadata and controls
102 lines (95 loc) · 5.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Techvolution</title>
<link rel="icon" href="./assets/phone-fill.svg">
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville&family=Poppins&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="./styling/index.css" rel="stylesheet">
</head>
<body>
<!-- Navigation Bar -->
<div class="container">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<h1 class="title"><img src="./assets/phone-fill.svg" alt="Techvolution Logo" height="40">Techvolution</h1>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Apple
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./components/iphone.html">iPhone Series</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Google
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./components/pixel.html">Pixel Series</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="./components/about.html">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Introduction -->
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-12 col-sm-12 col-lg-6">
<img src="./assets/smartphone_evolution.jpg" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Welcome to Techvolution!</h1>
<p class="lead">Step into the dynamic world of smartphones and witness the extraordinary journey of their evolution.<br><br> An ultimate destination to explore the captivating story behind these pocket-sized wonders that have revolutionized the way we communicate, connect, and experience the world.</p>
</div>
</div>
</div>
<div class="container my-5">
<div class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg">
<div class="col-lg-4 offset-lg-1 p-0 overflow-hidden">
<img class="rounded-lg-3" src="./assets/simon.png" alt="Simon_firstSmartphone" width="500">
</div>
<div class="col-lg-7 p-3 p-lg-5 pt-lg-3">
<h1 class="display-4 fw-bold lh-1 text-body-emphasis">IBM Simon</h1>
<p class="lead">
First Smartphone which released on August 16, 1994
<br>Featured a LCD display and Vadem VG230 (CMOS) system-on-chip (SoC) from NEC
<br>Sold almost 50000 units
</p>
</div>
</div>
</div>
<!-- Footer -->
<div class="container">
<footer class="py-3 my-4">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="./index.html" class="nav-link px-2 text-body-secondary">Home</a></li>
<li class="nav-item"><a href="../iphone.html" class="nav-link px-2 text-body-secondary">iPhone</a></li>
<li class="nav-item"><a href="../pixel.html" class="nav-link px-2 text-body-secondary">Pixel</a></li>
<li class="nav-item"><a href="../about.html" class="nav-link px-2 text-body-secondary">About Us</a></li>
</ul>
<p class="text-center text-body-secondary">© 2023 Techvolution</p>
</footer>
</div>
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>