-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
78 lines (70 loc) · 4.09 KB
/
about.html
File metadata and controls
78 lines (70 loc) · 4.09 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title>About</title>
<style>
body{
/* background-color: rgb(0, 0, 0); */
}
</style>
</head>
<body>
<div class="alert alert-success m-0 sticky-top" role="alert">
Free shipping on orders over $50
</div class="mt-0 sticky-top">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark sticky-top " >
<div class="container-fluid">
<a class="navbar-brand" href="#">DNet</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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
STORE
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">MEN</a></li>
<li><a class="dropdown-item" href="#">WOMEN</a></li>
<li><a class="dropdown-item" href="#">KIDS</a></li>
</ul>
</li>
<<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html">ABOUT</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 ">
<h2 class="featurette-heading">First featurette heading. <span class="text-muted">It’ll blow your mind.</span></h2>
<p class="lead">Some great placeholder content for the first featurette here. Imagine some exciting prose here.</p>
</div>
<div class="col-md-5">
<img style="width: 100%;" src="https://media.istockphoto.com/photos/textile-factory-picture-id460735677?k=20&m=460735677&s=612x612&w=0&h=agI83LQRfQ0yppZd-DZuOqWLGLPkKyiUrp1xbRLkDBE=" alt="">
</div>
</div>
<div class="row featurette featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2 mt-0.5">
<h2 class="featurette-heading">And lastly, this one. <span class="text-muted">Checkmate.</span></h2>
<p class="lead">And yes, this is the last block of representative placeholder content. Again, not really intended to be actually read, simply here to give you a better view of what this would look like with some actual content. Your content.</p>
</div>
<div class="col-md-5">
<img style="width: 90%;" src="https://media.istockphoto.com/photos/textile-industry-sock-picture-id523629776?k=20&m=523629776&s=612x612&w=0&h=1u_ekoKvjcUYQTb-VE0k5aK3k4fkC8SXRn7a3rAQUHI=" alt="">
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>