โครงสร้าง HTML เบื้องต้น


โครงสร้างพื้นฐานแบบ HTML 


<header> - Defines a header for a document or a section
<nav> - Defines a container for navigation links
<section> - Defines a section in a document
<article> - Defines an independent self-contained article
<aside> - Defines content aside from the content (like a sidebar)
<footer> - Defines a footer for a document or a section
<details> - Defines additional details
<summary> - Defines a heading for the <details> element

แท็กหลักๆ ก็จะประมาณนี้ https://www.w3schools.com/html/html_layout.asp


<!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;
}
header {
    background-color: #666;
}
nav {
    float: left;
    width: 30%;
    background: #ccc;
}
nav ul {
    list-style-type: none;
    padding: 0;
}
article {
    float: left;
    width: 70%;
    background-color: #f1f1f1;
}
/* Clear floats after the columns */
section:after {
    content: "";
    display: table;
    clear: both;
}
footer {
    background-color: #777;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other */
@media (max-width: 600px) {
    nav, article {
        width: 100%;
        height: auto;
    }
}
</style>
</head>
<body>
<header>
  <h2>Cities</h2>
</header>
<section>
  <nav>
    <ul>
      <li><a href="#">London</a></li>
      <li><a href="#">Paris</a></li>
    </ul>
  </nav>
  <article>
    <h1>London</h1>
    <p>London is the capital city of England.</p>
    <img src="img_girl1.jpg" style="width:100%;">
  </article>
</section>
<footer>
  <p>Footer</p>
</footer>
</body>
</html>

Responsive

1. Meta: viewport ใส่ viewport ใน meta เป็นการควบคุมหน้าเว็บให้ไหลและปรับสเกลไปตามขนาดเว็บเบราเซอร์ตามสไตล์แบบ Responsive
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2. Style: width:100% ปรับรูปให้เต็มความกว้างตามหน้าจอ
<img src="img_girl.jpg" style="width:100%;">
3. Style: max-width จะปรับรูป แต่จะไม่เกินขนาดสูงสุดที่กำหนด
<img src="img_girl.jpg" style="max-width:100%;height:auto;">
4. Tag: <picture> แสดงรูปที่ต่างกันในขนาดจอที่ต่างกัน
<picture>
  <source srcset="img_smallflower.jpg" media="(max-width: 600px)">
  <source srcset="img_flowers.jpg" media="(max-width: 1500px)">
  <source srcset="flowers.jpg">
  <img src="img_smallflower.jpg" alt="Flowers">
</picture>
5. ขนาดตัวอักษร vm (Viewport width) ปรับขนาดอักษรตามจอ Viewport is the browser window size. 1vw = 1% of viewport width. If the viewport is 50cm wide, 1vw is 0.5cm.
<h1 style="font-size:10vw">Hello World</h1> 

Bootstrap

โครงสร้างพื้นฐาน Bootsrap

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <div class="jumbotron">
    <h1>My First Bootstrap Page</h1>
    <p>Resize this responsive page to see the effect!</p> 
  </div>
  <div class="row">
    <div class="col-sm-4">
      <h3>Column 1</h3>
    </div>
    <div class="col-sm-4">
      <h3>Column 2</h3>
    </div>
    <div class="col-sm-4">
      <h3>Column 3</h3>        
    </div>
  </div>
</div>

</body>
</html>
Previous
Next Post »