-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathindex.html
28 lines (25 loc) · 1020 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Modern Web Apps</title>
</head>
<body>
<div>
<div style="height:10vh; background-color: orange;" >
<h1 style="color:red;margin-left:33%; margin-right:33%;margin-top:-10px; padding-top:10px;text-align: center">Welcome to Modern Web Apps</h1>
</div>
<div>
<div style="width:20%;height:80vh;flex-direction: vertical; background-color: lightgray;float:left;">
</div>
<div style="width:80%;height:80vh;flex-direction: vertical; background-color: magenta;float:left;">
</div>
</div>
<div style="height:10vh; width:100%; background-color:blue;float:left"></div>
</div>
</div>
</body>
</html>