-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssposition3.html
53 lines (51 loc) · 1.85 KB
/
cssposition3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>css position 3</title>
<style>
img{width: 25%;margin-left: 30%;}
.rr,.jj{width: 20%;float: left;margin-left: 30px;}
ul{list-style: none;}
.iteam{color: blue;}
#g{border: 1mm ridge black;width: 450px;height: 800px;}
p{margin-left: 10%;}
</style>
</head>
<body>
<div id="g">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/2048px-HTML5_logo_and_wordmark.svg.png" alt="image">
<p> The official logo of latest version.html 5</p>
<ul class="rr"><li class="iteam">filename extension</li><br>
<li class="iteam">internet media type</li><br>
<li class="iteam">type code</li><br>
<li class="iteam">uniform type identifier(UTI)</li><br>
<li class="iteam">Developed by</li><br>
<li class="iteam">initial release</li><br>
<li class="iteam">latest release</li><br>
<li class="iteam">Type of format</li><br>
<li class="iteam">container for</li><br>
<li class="iteam">contained by</li><br>
<li class="iteam">extended from</li><br>
<li class="iteam">extended to</li><br>
<li class="iteam">open format</li><br>
<li class="iteam">Website</li></ul><br>
<ul class="jj">
<li>.html</li>
<li>.htm</li><br>
<li>text/html</li><br>
<li>text/html</li><br>
<li>public.html</li><br>
<li>WHATWG</li><br>
<li>1993;30 years ago</li><br>
<li>HTML5</li><br>
<li>DOCUMENT</li><br>
<li>HTML ELEMENTS</li><br>
<li>WEB BROWSER</li><br>
<li>SGML</li><br>
<li>XHTML</li><br>
<li>YES</li><br>
<li>html.spec.whatwg.org</li></ul></div><br>
</body>
</html>