-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
Copy pathindex.html
106 lines (86 loc) · 1.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Layout</title>
<style>
* {
margin: 0;
padding: 0;
}
header {
position: sticky;
top: 0;
}
nav {
background-color: pink;
height: 83px;
}
main {
background-color: black;
color: white;
padding: 34px;
}
.container {
background-color: green;
margin: 12px 34px;
padding: 55px 23px;
text-align: center;
}
.box1 {
background-color: palevioletred;
height: 70vh;
width: 45%;
display: inline-block;
margin: 0 12px;
}
.box2 {
background-color: blue;
height: 70vh;
width: 45%;
display: inline-block;
margin: 0 12px;
}
.text-box {
padding: 34px;
border: 2px solid white;
margin: 50px 34vw;
font-size: 2em;
border-radius: 13px;
}
.orange-box {
height: 32px;
width: 32px;
background: orange;
position: fixed;
bottom: 12px;
right: 23px;
border-radius: 60px;
}
footer {
height: 100px;
background-color: bisque;
}
</style>
</head>
<body>
<header>
<nav>
</nav>
</header>
<main>
<div class="container">
<div class="box1"></div>
<div class="box2"></div>
</div>
<div class="text-box">
<p>Welcome to Sigma Web Development Express</p>
</div>
<div class="orange-box">
</div>
</main>
<footer>
</footer>
</body>
</html>