-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6_Animation_using_Images.html
More file actions
44 lines (29 loc) · 1.4 KB
/
Copy path6_Animation_using_Images.html
File metadata and controls
44 lines (29 loc) · 1.4 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
<!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 Image Clouds and a Dog Using HTML</h1>
<!--cloude moving left-->
<marquee direction="left" scrollamount="3">
<img src="Images/cloud.png" alt="cloud" height="100">       <img src="Images/cloud.png" alt="cloud" height="100">       <img src="Images/cloud.png" alt="cloud" height="100">       <img src="Images/cloud.png" alt="cloud" height="100">
</marquee> <br>
<marquee direction="left" scrollamount="4">
<img src="Images/cloud.png" alt="cloud" height="80">   <img src="Images/cloud.png" alt="cloud" height="80">   <img src="Images/cloud.png" alt="cloud" height="80">
</marquee>
<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" ><img src="Images/icons8-dog-100.png" alt="Walking Dog"></font>
</marquee>
</td>
</tr>
</table>
</body>
</html>