-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
29 lines (28 loc) · 1.66 KB
/
test.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
<!DOCTYPE html>
<html>
<head>
<title>Beautiful sceneries in the United States</title>
<style>
h3 {
font-size:30px;
}
p1 {
font-size:24px;
}
img {
border-radius:50%;
}
</style>
</head>
<body>
<h1 style="background-color:green; color:white; font-family: Arial, Helvetica, sans-serif; text-align:center;">Welcome to the beautiful sceneries of the United States! </h1>
<h3 style="font-size:24px; font-family: Arial, Helvetica, sans-serif;"> Here are some of the United States' most beautiful landscapes and natural sanctuaries across the country!</h3>
<img src="https://media.istockphoto.com/id/517188688/photo/mountain-landscape.jpg?s=612x612&w=0&k=20&c=A63koPKaCyIwQWOTFBRWXj_PwCrR4cEoOw2S9Q7yVl8=" width="200" height="200">
<h2 style="color:blue; text-align: center; font-family: Arial, Helvetica, sans-serif; "> Let's see a short video of the beautiful sceneries of a brown bear in the Yellowstone National Park.</h2>
<video controls>
<source src="https://www.w3schools.com/html/movie.mp4" type="video/mp4">
</video>
<h3 style="color:blue; text-align:center; font-family: Arial, Helvetica, sans-serif;" >Go further</h3>
<iframe width="550" height="420" src="https://www.youtube.com/embed/S9atRW1DgbQ?si=qJYPxGQ2pYX7y3jt" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</body>
</html>