-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
200 lines (186 loc) · 11.7 KB
/
about.html
File metadata and controls
200 lines (186 loc) · 11.7 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CodeBlogs</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
</head>
<body>
<!-- https://source.unsplash.com/random/500%C3%97500/?tech,code,laptop -->
<!-- ********** NAVBAR *********** -->
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">CodeBlogs</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 " 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">
Topics
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="">Technology <span class="badge text-bg-light">48</span></a></li>
<li><a class="dropdown-item" href="">Web Development <span class="badge text-bg-light">34</span></a></li>
<li><a class="dropdown-item" href="">Machine Learning <span class="badge text-bg-light">29</span></a></li>
<li><a class="dropdown-item" href="">Cyber Security <span class="badge text-bg-light">21</span></a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="support.html">Support</a></li>
<li><a class="dropdown-item" href="write.html">Write for us</a></li>
</ul>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- ********** CAROUSEL ***********
<div id="carouselExampleCaptions" class="carousel slide carousel-fade" data-bs-ride="false">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/img1.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h3>Welcome to CodeBlogs</h3>
<p>Technology , Coding , Web Development</p>
<button type="button" class="btn btn-success">Technology</button>
<button type="button" class="btn btn-warning">Coding</button>
<button type="button" class="btn btn-dark">Web Development</button>
</div>
</div>
<div class="carousel-item">
<img src="images/img2.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h3>Highest rated coding blogs</h3>
<p>Technology , Coding , Web Development</p>
<button type="button" class="btn btn-success">Technology</button>
<button type="button" class="btn btn-warning">Coding</button>
<button type="button" class="btn btn-dark">Web Development</button>
</div>
</div>
<div class="carousel-item">
<img src="images/img3.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h3>More than 32,000 blogs</h3>
<p>Technology , Coding , Web Development</p>
<button type="button" class="btn btn-success">Technology</button>
<button type="button" class="btn btn-warning">Coding</button>
<button type="button" class="btn btn-dark">Web Development</button>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div> -->
<!-- *********** about page ************ -->
<div class="container marketing my-5">
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h2 class="featurette-heading fw-normal lh-1">How we started. <span class="text-muted">It’ll blow your mind.</span></h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.Some great placeholder content for the first featurette here.
Imagine some exciting prose here.</p>
</div>
<div class="col-md-5 order-md-2">
<!-- <svg class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 500x500" preserveAspectRatio="xMidYMid slice" -->
<!-- focusable="false"> -->
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" src="images/about.png" alt="">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#eee"></rect>
<!-- <text x="50%" y="50%" fill="#aaa" dy=".3em">500x500</text> -->
</svg>
</div>
</div>
<br><br><hr><br><br>
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-2">
<h2 class="featurette-heading fw-normal lh-1">Why we are unique. <span class="text-muted">It’ll blow your mind.</span></h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.Some great placeholder content for the first featurette here.
Imagine some exciting prose here.</p>
</div>
<div class="col-md-5 order-md-1">
<!-- <svg class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 500x500" preserveAspectRatio="xMidYMid slice" -->
<!-- focusable="false"> -->
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" src="images/about2.png" alt="">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#eee"></rect>
<!-- <text x="50%" y="50%" fill="#aaa" dy=".3em">500x500</text> -->
</svg>
</div>
</div>
<br><br><hr><br><br>
<div class="row featurette d-flex justify-content-center align-items-center">
<div class="col-md-7 order-md-1">
<h2 class="featurette-heading fw-normal lh-1">Our current plans and goals. <span class="text-muted">It’ll blow your mind.</span></h2>
<p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute
irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum.Some great placeholder content for the first featurette here.
Imagine some exciting prose here.</p>
</div>
<div class="col-md-5 order-md-2">
<!-- <svg class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: 500x500" preserveAspectRatio="xMidYMid slice" -->
<!-- focusable="false"> -->
<img class="bd-placeholder-img bd-placeholder-img-lg featurette-image img-fluid mx-auto" width="500" height="500" src="images/about3.png" alt="">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#eee"></rect>
<!-- <text x="50%" y="50%" fill="#aaa" dy=".3em">500x500</text> -->
</svg>
</div>
</div>
</div>
<!-- ************ FOOTER *********** -->
<div class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-muted text-decoration-none lh-1">
<svg class="bi" width="30" height="24"><use xlink:href="#bootstrap"></use></svg>
</a>
<span class="mb-3 mb-md-0 text-muted">© 2020-2022 CodeBlogs, Inc</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-muted" href=""> <img class="bi" width="24" height="24" src="https://static.vecteezy.com/system/resources/previews/002/534/045/original/social-media-twitter-logo-blue-isolated-free-vector.jpg" alt=""></a></li>
<li class="ms-3"><a class="text-muted" href=""> <img class="bi" width="24" height="24" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/2048px-Instagram_logo_2016.svg.png" alt=""> </a></li>
<li class="ms-3"><a class="text-muted" href=""> <img class="bi" width="24" height="24" src="https://xylusthemes.com/wp-content/uploads/2018/07/logo-facebook-rund.png" alt=""> </a></li>
</ul>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>