-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpage.html
44 lines (42 loc) · 1.44 KB
/
fpage.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Front Page</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="header">
<h2>TITLE</h2>
</div>
<div class="row">
<div class="column side" style="background-color: #aaa">Column</div>
<div class="column middle" style="background-color: #bbb">
<div class="d-grid" id="test">
<button class="btn btn-primary btn-md" type="button" id="test2">
Button
</button>
<button class="btn btn-primary btn-md" type="button" id="test3">
Button
</button>
</div>
</div>
<div class="column side" style="background-color: #ccc">Column</div>
</div>
<div class="footer">
<p>Created by: Marcia, Rakshan, Muhidin</p>
</div>
</body>
</html>