-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.html
More file actions
104 lines (99 loc) · 4.89 KB
/
layout.html
File metadata and controls
104 lines (99 loc) · 4.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fhiday</title>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./responsive.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<section id="layout">
<nav class="navbar navbar-fixed">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="./assets/img/fhiday.svg" alt="fhiday" srcset="./assets/img/fhiday.svg">
</a>
<img src="./assets/img/toggle.svg" class="toggle-btn me-auto" alt="toggle btn">
<div class="account ms-auto me-xs-2 me-md-5"></div>
</div>
</nav>
<section id="left-nav">
<div class="menu">
<ul>
<li><img src="./assets/img/dot.svg" alt="dot"> <a href="#">Dashboard</a></li>
<li class="active"><img src="./assets/img/dot.svg" alt="dot"> <a href="#">Accounts</a></li>
<li><img src="./assets/img/dot.svg" alt="dot"> <a href="#">Setting</a></li>
</ul>
</div>
<div class="menu-footer position-absolute bottom-0">
<span>copyright © 2023 - FHIDAY</span>
</div>
</section>
<section id="content-layout">
<div class="content">
<div class="container">
<div class="row">
<div class="col-md-4 mb-3">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>A well-known quote, contained in a blockquote element.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>A well-known quote, contained in a blockquote element.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>A well-known quote, contained in a blockquote element.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-12 mb-3">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>A well-known quote, contained in a blockquote element.</p>
<footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
</body>
</html>