-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnauka-html5.html
52 lines (46 loc) · 1.31 KB
/
nauka-html5.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Strona domowa</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav>
<a href="index.html">Strona główna</a>
<a href="nauka-html5.html">HTML</a>
<a href="nauka-css3.html">CSS</a>
<a href="nauka-javascript.html">Javascript</a>
</nav>
</header>
<main>
<header id="top">
<h1>HTML</h1>
</header>
<section>
<h2>Co to jest HTML?</h2>
<p>
Przez ostatnie 15 lat trochę drukowałem na różnych podłożach, teraz pora na wypełnianie
treścią World Wide Web.<br /><a href="#notatki">Przejdź</a>
</p>
</section>
<section id="notatki">
<h2>Podstawy HTML</h2>
<article>
<h3>Jak tworzyć HTMLa?</h3>
<p>HTML to znaczniki/tagi/elementy</p>
</article>
</section>
</main>
<footer>
Strona powstaje w trakcie szkolenia WTF 2020 .
<a href="#top"> Wróć na górę strony</a>
</footer>
</body>
</html>