-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoot_Task1.html
More file actions
64 lines (63 loc) · 2.97 KB
/
Copy pathBoot_Task1.html
File metadata and controls
64 lines (63 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Bootstrap_task1</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
.header_1{
background-color: aqua;
text-align: center;
}
.header_2{
background-color: gray;
}
.text_div{
float: left;
text-align: center;
}
.sidebar{
background-color: gray;
height: 100vh;
float: right;
}
</style>
</head>
<body>
<div>
<header class="header_1 pt-3 border-bottom">
<div class="container d-flex flex-wrap justify-content-center">
<a href="/" class="d-flex align-items-center mb-3 link-body-emphasis text-decoration-none">
<span class="fs-4">Ethnus Layout</span>
</a>
</div>
</header>
</div>
<div>
<nav class="header_2 border-bottom">
<div class="container d-flex flex-wrap">
<ul class="nav me-auto">
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2 active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">Features</a></li>
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">Pricing</a></li>
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">FAQs</a></li>
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">About</a></li>
</ul>
<ul class="nav">
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">Login</a></li>
<li class="nav-item"><a href="#" class="text-light nav-link link-body-emphasis px-2">Sign up</a></li>
</ul>
</div>
</nav>
</div>
<div class="text_div"><p class="text">Write your text here.</p></div>
<div class="sidebar">
<div class="p-3" style="width:170px;">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>