Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions layout.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

.lab {
min-height: 100vh;
}

.navbar {
background: white;
height: 70px;
}

.nav {
background: black;
height: 400px;
}

.menu {
background: red;
height: 300px;
}

.content {
background: white;
height: 800px;
}

.foot {
background: black;
height: 300px;
}

.footer {
background: grey;
height: 70px;
}
23 changes: 23 additions & 0 deletions layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAB | Bootstrap Cloning Revera</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="layout.css">
</head>
<body>
<div class="container lab">
<div class="col">
<div class="row navbar">navbar</div>
<div class="row nav">nav</div>
<div class="row menu">menu</div>
<div class="row content">content</div>
<div class="row foot">foot</div>
<div class="row footer">footer</div>
</div>
</div>
</body>
</html>