جلسه سوم آموزش کد محور زبان برنامه نویسی HTML،
در اینجا قسمتی از کد HTML است که در آن از فرمها و ورودیها استفاده کرده ایم. کد زیر را کپی و اجرا کنید:
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>صفحه وب من</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
section {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>سلام، این صفحه وب من است!</h1>
</header>
<section>
<h2>بخش اصلی</h2>
<p>اینجا محتوای اصلی صفحه وب قرار دارد.</p>
<ul>
<li>لیست مورد ۱</li>
<li>لیست مورد ۲</li>
<li>لیست مورد ۳</li>
</ul>
<p><a href=”https://www.example.com”>لینک به سایت دیگر</a></p>
</section>
<footer>
<p>© ۲۰۲۴ تمامی حقوق محفوظ است.</p>
</footer>
</body>
</html>
توضیحات کلی :
- در این قسمت، یک فرم ایجاد شده است که شامل ورودیهای مختلف مثل نام (
<input type="text">
)، ایمیل (<input type="email">
) و پیام (<textarea>
) میشود. همچنین یک دکمه ارسال (<input type="submit">
) نیز افزوده شده است.
قوانین ارسال دیدگاه