-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplay.html
More file actions
86 lines (82 loc) · 2.03 KB
/
play.html
File metadata and controls
86 lines (82 loc) · 2.03 KB
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
<html lang="en">
<head>
<title>about JavaScript</title>
<meta charset="utf-8">
<style media="screen">
h1{
color: white;
/* nothing great just new line */
}
h2{
margin-left: 20px;
}
h5{
margin: 20px;
font-size: 12pt;
}
a{
color: blue;
text-decoration: none;
}
a:hover {
color: white;
text-decoration: underline;
}
#navigation, #main_content{
display: inline-block;
}
#wrapper{
width: 950px;
background-color: silver;
padding: 15px;
padding-bottom: 60px;
}
/* new line */
#header{
height: 100px;
background-color: red;
margin-bottom: 15px;
border-radius: 15px;
font-size: 36px;
color: white;
line-height: 100px;
padding-left: 30px;
}
#navigation{
height: 300px;
width: 225px;
background-color: teal;
margin-top: 10px;
border-radius: 15px;
color: yellow;
}
#main_content{
height: 400px;
width: 700px;
background-color: black;
margin-top: 10px;
float: right;
border-radius: 15px;
color: red;
}
#advertisement{
height: 80px;
width: 950px;
background-color: gray;
margin-top: 115px;
border-radius: 15px;
color: white;
}
</style>
</head>
<body>
<div id="wrapper">
<h1 id="header">JavaScript Basics</h1>
<div id="navigation"><a href=''>Home</a></div>
<div id="main_content">sdsdsdsds</div>
<p id="advertisement">
For more information, hollah atcha boy <a href='#'>uapatira</a>!
</p>
</div><!-- end of wrapper -->
</body>
</html>