Files
webfejlesztes/szerkezet/szerkezet.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2022-02-11 14:03:22 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Szerkezet</title>
</head>
<body>
<header>
<nav class="col-12">
2022-04-11 09:00:52 +02:00
<table>
<tr>
<td><img class="icon col-2" id="logo1" src="logo.png"></td>
<td>opcio1</td>
<td>opcio2</td>
<td>opcio3</td>
<td><img class="icon col-2" id="logo2" src="facelogo.png"></td>
</tr>
</table>
2022-02-11 14:03:22 +01:00
</nav>
</header>
<br><br><br><br><br><br><br><br>
<section>
<aside id="left">
bal aside
</aside>
<article>
article
</article>
<aside id="right">
jobb aside
</aside>
</section>
<br><br><br><br><br><br><br><br><br>
<footer>
footer
</footer>
</body>
</html>