HTML Düzen Öğeleri
HTML, bir web sayfasının farklı bölümlerini tanımlayan birkaç öğeye sahiptir:
Örnek Bir Sayfa Tasarımı
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Style the header */
header {
background-color: #666;
padding: 30px;
text-align: center;
font-size: 35px;
color: white;
}
.topbar{
text-align:right;
}
/* Create two columns/boxes that floats next to each other */
nav {
float: left;
width: 30%;
height: 300px; /* only for demonstration, should be removed */
background: #ccc;
padding: 20px;
}
/* Style the list inside the menu */
nav ul {
list-style-type: none;
padding: 0;
}
article {
float: left;
padding: 20px;
width: 70%;
background-color: #f1f1f1;
height: 300px; /* only for demonstration, should be removed */
}
/* Clear floats after the columns */
section::after {
content: "";
display: table;
clear: both;
}
/* Style the footer */
footer {
background-color: #777;
padding: 10px;
text-align: center;
color: white;
}
/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
nav, article {
width: 100%;
height: auto;
}
}
.yatay ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.yatay li {
float: left;
}
.yatay li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.yatay li a:hover:not(.active) {
background-color: #111;
}
.yatay .active {
background-color: #04AA6D;
}
</style>
</head>
<body>
<div class="topbar">Facebook | Twitter </div>
<header>
<h2>Banner</h2>
</header>
<div class="yatay">
<ul>
<li><a href="#home">Anasayfa</a></li>
<li><a href="#news">Menu 1</a></li>
<li><a href="#contact">Menu 2</a></li>
<li><a href="#contact">İletişim</a></li>
<li style="float:right"><a class="active" href="#about">Hakkımızda</a></li>
</ul>
</div>
<section>
<nav>
<ul>
<li><a href="#">Menu 1</a></li>
<li><a href="#">Menu 2</a></li>
<li><a href="#">Menu 3</a></li>
</ul>
</nav>
<article>
<h1>İÇERİK</h1>
</article>
</section>
<footer>
<p>Footer</p>
</footer>
</body>
</html>