جلسه نهم آموزش کد محور زبان برنامه نویسی HTML،
در این قسمت، بخش های دیگری از کد HTML برای افزودن گالری تصاویر و اطلاعات تماس را مشاهده میکنید:
کد HTML زیر را کپی و اجرا کنید:
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>صفحه وب ساده</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f8f8;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
section {
padding: 20px;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
form {
margin-top: 20px;
}
input, textarea {
width: 100%;
padding: 8px;
margin-bottom: 10px;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #333;
color: #fff;
cursor: pointer;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}
.gallery img {
margin: 10px;
max-width: 100%;
height: auto;
}
.contact-info {
margin-top: 20px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>صفحه وب ساده</h1>
</header>
<section>
<h2>بخش اصلی</h2>
<p>اینجا محتوای اصلی صفحه وب قرار دارد. میتوانید متن، تصاویر و لینکها را در اینجا قرار دهید.</p>
<h3>لیست نمونه:</h3>
<ul>
<li>مورد ۱</li>
<li>مورد ۲</li>
<li>مورد ۳</li>
</ul>
<h3>تصویر نمونه:</h3>
<img src="https://via.placeholder.com/300" alt="تصویر نمونه">
<h3>لینک نمونه:</h3>
<p><a href="https://www.example.com">لینک به سایت دیگر</a></p>
<h3>فرم نمونه:</h3>
<form action="/submit" method="post">
<label for="name">نام:</label>
<input type="text" id="name" name="name" required>
<label for="email">ایمیل:</label>
<input type="email" id="email" name="email" required>
<label for="message">پیام:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<input type="submit" value="ارسال">
</form>
<h3>گالری تصاویر:</h3>
<div class="gallery">
<img src="https://via.placeholder.com/150" alt="تصویر ۱">
<img src="https://via.placeholder.com/150" alt="تصویر ۲">
<img src="https://via.placeholder.com/150" alt="تصویر ۳">
</div>
</section>
<div class="contact-info">
<h2>اطلاعات تماس</h2>
<p>آدرس: تهران، خیابان مثال، کوچه نمونه</p>
<p>تلفن: ۰۲۱-۲۲۲۲۲۲۲</p>
<p>ایمیل: info@example.com</p>
</div>
<footer>
<p>© ۲۰۲۴ تمامی حقوق محفوظ است.</p>
</footer>
</body>
</html>
قوانین ارسال دیدگاه