-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
48 lines (48 loc) · 1.32 KB
/
test.html
File metadata and controls
48 lines (48 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<header d-comp="header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="" />
</a>
</div>
</div>
</div>
</div>
</header>
<section d-comp="topsection" class="container">
<div class="row">
<div class="col-md-12">
<div class="post-preview">
<a href="post.html">
<h2 class="post-title">
Man must explore, and this is exploration at its greatest
</h2>
<h3 class="post-subtitle">
Problems look mighty small from 150 miles up
</h3>
</a>
<p class="post-meta">
Posted by
<a href="#!">Start Bootstrap</a>
on September 24, 2023
</p>
</div>
</div>
</div>
</section>
<footer d-comp="footer" class="footer">
<div class="container"></div>
</footer>
</body>
</html>