diff --git a/movingCar/image/carImage.png b/movingCar/image/carImage.png new file mode 100644 index 0000000..7f19300 Binary files /dev/null and b/movingCar/image/carImage.png differ diff --git a/movingCar/image/circle.png b/movingCar/image/circle.png new file mode 100644 index 0000000..141d8d7 Binary files /dev/null and b/movingCar/image/circle.png differ diff --git a/movingCar/image/city.png b/movingCar/image/city.png new file mode 100644 index 0000000..63bb06a Binary files /dev/null and b/movingCar/image/city.png differ diff --git a/movingCar/image/road.png b/movingCar/image/road.png new file mode 100644 index 0000000..9c787ee Binary files /dev/null and b/movingCar/image/road.png differ diff --git a/movingCar/image/sky-image.jpg b/movingCar/image/sky-image.jpg new file mode 100644 index 0000000..f18cc55 Binary files /dev/null and b/movingCar/image/sky-image.jpg differ diff --git a/movingCar/index.html b/movingCar/index.html new file mode 100644 index 0000000..d31accc --- /dev/null +++ b/movingCar/index.html @@ -0,0 +1,15 @@ + + + + + + + CarAnimation + + + + +
+ + + \ No newline at end of file diff --git a/movingCar/style.css b/movingCar/style.css new file mode 100644 index 0000000..1c8714c --- /dev/null +++ b/movingCar/style.css @@ -0,0 +1,28 @@ +*, +body { + margin: 0; + padding: 0; + box-sizing: border-box; + direction: rtl; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +a { + text-decoration: none; +} + +li, +ol, +ul { + margin: 0; + padding: 0; + list-style: none; +} + +.main-bg { + width: 100%; + height: 100vh; + background-image: url('./image/sky-image.jpg'); + background-size: cover; + background-repeat: no-repeat; +} \ No newline at end of file