-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_3 - css.html
71 lines (61 loc) · 1.36 KB
/
code_3 - css.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
<!DOCTYPE html>
<html>
<head>
<title>
CSS example
</title>
<link rel="stylesheet" href="./code_3.css">
</head>
<body>
<h2 class="dvu-font">
My Article
</h2>
<img src="https://pbs.twimg.com/profile_images/653312117886447616/szRCKaD_.jpg"
id="doge-img"
>
<div>
<a
href="https://www.youtube.com/"
target="_blank"
>
YouTube
</a>
<p>
Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.
<br>
Separated they live in Bookmarksgrove right at the coast of the
</p>
<ul class="dvu-font italic-list">
Mah List
<li> One </li>
<li> Two </li>
<div>
<ul>
<li>Mickey</li>
<li>Minnie</li>
<li>Donald</li>
</ul>
</div>
</ul>
<ul>
<li>ABC</li>
<li>DEF</li>
<li>BLAHBLAH</li>
</ul>
<p class="dvu-font">
Li Europan lingues es membres del sam familie. Lor separat existentie es un myth.
<br>
Por scientie, musica, sport etc, litot Europa usa li sam vocabular. Li lingues differe solmen in
</p>
<ul class="dvu-font">
Mah other List
<li> One </li>
<li> Two </li>
</ul>
<form>
<input type="text" required>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>