<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gelişmiş Web Sitem</title>
<style>
/* Genel Stil */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
/* Header */
header {
background: #333;
color: #fff;
padding-top: 30px;
min-height: 70px;
border-bottom: #77b300 3px solid;
}
header a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header li {
display: inline;
padding: 0 20px 0 20px;
}
header h1 {
float: left;
}
header nav {
float: right;
margin-top: 10px;
}
/* Ana İçerik */
main {
padding: 20px;
background: #f4f4f4;
}
main section {
margin-bottom: 20px;
}
/* Footer */
footer {
background: #333;
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 20px;
}
.footer-container {
display: flex;
justify-content: space-around;
}
.footer-column {
flex: 1;
padding: 20px;
}
.footer-column h3 {
border-bottom: 1px solid #ccc;
padding-bottom: 10px;
margin-bottom: 10px;
}
.footer-column ul {
list-style: none;
padding: 0;
}
.footer-column ul li {
margin-bottom: 10px;
}
.footer-column a {
color: #ccc;
text-decoration: none;
}
.footer-column a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Hoş Geldiniz</h1>
<nav>
<ul>
<li><a href="#home">Ana Sayfa</a></li>
<li><a href="#about">Hakkında</a></li>
<li><a href="#services">Hizmetler</a></li>
<li><a href="#contact">İletişim</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="home">
<h2>Ana Sayfa</h2>
<p>Gelişmiş web sitemize hoş geldiniz. Burada en iyi hizmetleri bulabilirsiniz.</p>
</section>
<section id="about">
<h2>Hakkında</h2>
<p>Biz, kaliteli web tasarımı ve geliştirme hizmetleri sunan bir ekibiz.</p>
</section>
<section id="services">
<h2>Hizmetler</h2>
<ul>
<li>Web Tasarımı</li>
<li>Web Geliştirme</li>
<li>SEO Danışmanlığı</li>
<li>Dijital Pazarlama</li>
</ul>
</section>
<section id="contact">
<h2>İletişim</h2>
<p>Bize <a href="mailto:info@example.com">info@example.com</a> adresinden ulaşabilirsiniz.</p>
</section>
</main>
<footer>
<div class="footer-container">
<div class="footer-column">
<h3>Hakkımızda</h3>
<p>Biz, modern web çözümleri sunan bir teknoloji firmasıyız.</p>
</div>
<div class="footer-column">
<h3>Hizmetler</h3>
<ul>
<li>Web Tasarımı</li>
<li>Web Geliştirme</li>
<li>SEO Danışmanlığı</li>
</ul>
</div>
<div class="footer-column">
<h3>İletişim</h3>
<p>Adres: Örnek Mah. No:1 Ankara</p>
<p>Telefon: +90 123 456 78 90</p>
<p>Email: <a href="mailto:info@example.com">info@example.com</a></p>
</div>
</div>
</footer>
</body>
</html>
Basit Bir Html Wep Sayfası Oluşturma Footer Üç Sutunlu.
Yorum Gönder