-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.52 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Hello World</title>
</head>
<body>
<h1>This is my first html page</h1>
<h2>And of course it is going to be dedicated to...</h2>
<p>Cats 🐈🐈⬛!</p>
<img src="img/cats.jpg" alt="Котики обнимаются" width="300" height="250">
<h3>First of all let me tell you why cats are so important</h3>
<ol>
<li>They are good hunters and they can always protect you from evil mice</li>
<li>They are beautiful</li>
<li>They are smart and independed and so they have power to change our world</li>
<li>They are funny</li>
<li>You should just admit that they are amazing</li>
</ol>
<h3>Secondly, im going to show some really expensive breeds so you can understand more clear how much money people are ready to spend for a cat (because cats are fantastic)</h3>
<ul>
<li>Bristol - 50000₽</li>
<li>Anatoli - 100000₽</li>
<li>Birman - 30000₽</li>
</ul>
<p>Finally i suggest you to look at this page and read more about cats</p>
<p>
<a href="https://www.britannica.com/animal/cat">Read now</a>
</p>
<p>Interally this page seems like this:</p>
<img src="https://luxe-host.ru/wp-content/uploads/1/6/1/161f48144b9c9fc2aee60672782fd3d3.png" alt="Код HTML">
</body>
</html>