-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (112 loc) · 4.55 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FLEXBOX EXPLORA</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #0077B6;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 100vh;
}
.left-side {
flex: 1.5;
background-image: url('bgimage1.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 100%;
}
.left-side-heading {
position: absolute;
top: 20px;
left: 20px;
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
color: black;
}
.right-side {
flex: 1;
padding: 20px;
background-color: #0077B6;
}
.text {
font-size: 18px;
color: #FFFFFF;
}
</style>
</head>
<body>
<div class="left-side"> <div class="left-side-heading">FLEXBOX EXPLORA</div></div>
<div class="right-side">
<div class="text">
<div class="container mt-5 ml-4">
<div class="row">
<div class="jumbotron">
<p >"Unlock Flexbox Secrets: Guide Fish to Their Feast and Master Flexbox Properties!"</p>
<div class="bg-light mb-3">
<h5 class="card-header">Level-1: Learn to implement justify-content</h5>
<div class="row">
<div class="col-sm-3">
</div>
<form action="level1.html">
<button style="background-color: red;">Play</button>
</form>
</div>
</div>
<div class="bg-light mb-3">
<h5 class="card-header">Level-2: Learn to implement align-items</h5>
<div class="row">
<div class="col-sm-3">
</div>
<form action="level2.html">
<button style="background-color: red;">Play</button>
</form>
</div>
</div>
<div class="bg-light mb-3">
<h5 class="card-header">Level-3: Learn to implement justify-content and align-items together </h5>
<div class="row">
<div class="col-sm-3">
</div>
<form action="level3.html">
<button style="background-color: red;">Play</button>
</form>
</div>
</div>
<div class="bg-light mb-3">
<h5 class="card-header">Level-4: Learn to implement flex-direction, justify-content and align-items together </h5>
<div class="row">
<div class="col-sm-3">
</div>
<form action="level4.html">
<button style="background-color: red;">Play</button>
</form>
</div>
</div>
<div class="bg-light mb-3">
<h5 class="card-header">Level-5: Learn to implement flex-direction and flex-wrap together </h5>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-8 mb-3">
<form action="level5.html">
<button style="background-color: red;">Play</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div></div>
</body>
</html>