19 lines
429 B
HTML
19 lines
429 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>My example web page!</title>
|
|
<link href="style.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div id=”container”>
|
|
<header>Tu będzie tytuł strony</header>
|
|
<nav>Tu będzie menu</nav>
|
|
<main>Tu będzie środek</main>
|
|
<footer>A tu stopka</footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |