-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (50 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
60 lines (50 loc) · 1.39 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
</head>
<body>
<header>
<nav>
<h1>Day-1-1 task</h1>
<p>Ichki linklar</p>
<a href="#text">Text</a> -
<a href="#">Image</a> -
<a href="#">List</a> -
<a href="#">Link</a>
</nav>
</header>
<hr>
<main>
<section id="Text-section">
<h2>Text Formatting</h2>
<p><strong>Strong</strong>,<i>Emphasis</i>,<mark>Highlight</mark></p>
<p>Old price: <del>$19.99</del> -> New <ins>$14.99</ins></p>
</section>
<section>
<h1>Image</h1>
<img src="https://picsum.photos/200/300" alt="city photo" width="400" height="400">
</section>
<section>
<h1>Lists</h1>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
<ol>
<li>Open VS Code</li>
<li>Write HTML</li>
<li>Save & View</li>
</ol>
<section id="link">
<h1>Links</h1>
<a href="https://google.com">View Google</a>
<br>
<a href="#text">Back to Text Section</a>
</section>
</main>
</body>
</html>