-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.html
More file actions
188 lines (179 loc) · 2.57 KB
/
web.html
File metadata and controls
188 lines (179 loc) · 2.57 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
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Web page </title>
<style type="text/css">
body {
background-color:lightgreen;
font-family:century Gotham,Tahoma,Arial,verdana,Helvetica,sans-serif;
margin:0px;
max-width:1000px;
border:solid;
border-color:#DDDDDD;
}
img{
width:200px;
height:150px;
}
#div1{
background-color:lightblue;
}
/*header and footer style*/
header {
background-color:lightblue;
color:yellow;
text-align:center;
margin:0px;
padding:10px;
}
header h2{
margin:0px;
}
h1{
font-size:50px;
margin:0px;
}
h2{
color:Violet;
font-size:20px;
margin:0px;
}
h3{
font-size:15px;
text-align:center;
color:Navy;
margin:0px;
}
footer{
clear:both;
background-color:lightBlue;
color:red;
text-align:center;
padding:15px;
}
footer h2{
font-size:14px;
color:violet;
}
/*navigation area style */
nav{
width:25px;
float:left;
}
nav a:link{
color:pink;
display:block;
border-bottom:1px solid yellow ;
padding:10px;
text-decoration:none;
font-weight:bold;
margin:2px;
}
nav a:hover {
color:orange;
background-color:white;
}
nav h3{
margin:15px;
color:yellow;
}
/*main sections styles*/
section {
width:75%;
float:left;
}
article{
background-color:#fff;
margin:10px;
padding:10px;
}
article header {
padding:5px;
}
article footer{
padding:5px;
}
article h1{
font-size:10px;
}
/*aside area*/
aside{
width:23%;
float:right;
border:4px solid red;
background-color:#5555ff;
margin:15px 5px 0px 0px;
}
aside h3{
margin:15px;
color:yellow;
}
aside p{
margin:15px;
color:white;
font-size:15px;
font-style:italic;
}
/* figure caption area*/
figcaption {
text-align:center;
color:blue;
font-size:1opx;
}
</style>
</head>
<body>
<header>
<h1>hyper text markup language </h1>
<h2>learn and fun </h2>
</header>
<div id="div1">
<nav>
<h3>Reach</h3>
<a href="http://www.google.com" >
go to Google </a>
<a href="http://www.youtube.com" >
go to YouTube </a>
</nav>
<section>
<article>
<header>
<h1>come </h1>
</header>
<p>html5 is a core technology markup language
of the Internet </p>
<figure>
<img src="file/4.jpg" alt="mypic"/>
<img src="file/1.png" alt="html5"/>
<figcaption>html5 is a good language </figcaption>
</figure>
<footer>
<h2>this is footer </h2>
</footer>
</article>
<article>
<header>
<h2>html5 if different </h2>
</header>
<aside>
<h3>And...</h3>
<p> As of October 2014 this is final
and complete fifth version of html standard
of the world wide Web consortium (W3S).
</p>
</aside>
<ul>
<li>server-sent events </li>
<li>Web storage </li>
<li>web SQL database </li>
<li>canvas and SVG graphics </li>
</ul>
<footer>
<h2>new features footer </h2>
</footer>
</article>
</section>
</div>
</body>
</html>