forked from lfbox7/lfbox7.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (47 loc) · 2.16 KB
/
index.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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<!-- Head Section -->
<head>
<!-- Insert head tag information here -->
</head>
<!-- Body Tag - all items that we want depicted on our Webpage must be inside of this tag! -->
<body class="aluminum">
<!-- Header Section -->
<header class="container-fluid main-menu madla sticky-top">
<!-- Navbar code goes here -->
</header>
<!-- div element with a container-fluid class attribute - this, along with container, are the 'largest' Bootstrap 4 layout elements -
this element stretches across the entire screen vice a container that has set margins -->
<div class="container-fluid">
<!-- the row class attribute must be present in order for the column class attributes inside of Bootstrap 4 to work -->
<div class="row">
<!-- the first column class attribute of our row, it will stretch 4/12ths of the width of the screen - the align-self-stretch
class attribute will keep it aligned with other elements on the page -->
<div class="card col-md-4 align-self-stretch" style="margin-left: 2em !important;">
<!-- Insert Card1 here -->
</div>
<div class="col-md-7 flex-column" style="margin-left: 3em !important;">
<div class="row">
<div class="card col-md-12">
<!-- Insert Card2 here -->
</div>
</div>
<div class="row">
<div class="card col-md-12">
<!-- Insert Card3 here -->
</div>
</div>
<div class="row">
<div class="card col-md-12">
<!-- Insert Card4 here -->
</div>
</div>
</div>
</div>
</div>
<!-- Footer Tag -->
<footer class="container-fluid madla center margin-top">
</footer>
<!-- Insert scripts here -->
</body>
</html>