-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject Animation using Emojis.html
More file actions
43 lines (29 loc) · 1.22 KB
/
Copy pathProject Animation using Emojis.html
File metadata and controls
43 lines (29 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML-Clouds and Dog Animation</title>
</head>
<body>
<h1 align="center">Creating an Animation of Moving Emojis Clouds and a Dog Using HTML</h1>
<!--cloude moving left-->
<marquee direction="left" scrollamount="3">
<font size="8" color="skyblue">☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁</font>
</marquee> <br>
<marquee direction="left" scrollamount="4">
<font size="6" color="skyblue"> ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁ ☁</font>
</marquee>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<!-- On a Fixed Road a Dog is Moving Right Side-->
<table border="1" cellpadding="0" cellspacing="0" width="100%" height="200">
<tr>
<td bgcolor="grey">
<marquee direction="right" scrollamount="5">
<font size="10" >🐕</font>
</marquee>
</td>
</tr>
</table>
</body>
</html>