Khám Phá Sự Kỳ Diệu Của HTML
Xây Dựng Website Chuyên Nghiệp Cùng Nodemy.vn
Cùng Nodemy Tạo Ra Những Giá Trị Lớn, Cùng Với Kho Bài Tập Lớn Chỉ Dành Riêng Cho Thành Viên Tham Gia Khóa Học Tại Nodemy
<span>text span 1</span> <span>text span 2</span>
<p>text p 1</p> <p>text p 2</p>
text span 1
text span 2
text p 1
text p 2
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
<u>Chữ gạch chân</u>
<i>Chữ nghiêng</i>
<b>Chữ in đậm</b>
<a href="https://nodemy.vn/">Nodemy</a>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td colspan="2">Jacob</td>
<td colspan="1">Thornton</td>
<td>@fat</td>
</tr>
</tbody>
</table>
# | First | Last | Handle | |
---|---|---|---|---|
1 | Mark | Otto | @mdo | |
2 | Jacob | Thornton | @fat |
<div>
<div>Block the div 1</div>
<hr />
<div>Block the div 2</div>
</div>
Block the div 1
Block the div 2
<img src="https://static-images.vnncdn.net/files/publish/2022/9/3/bien-vo-cuc-thai-binh-346.jpeg" alt="hinh anh">
<video
src="https://storage.googleapis.com/web-dev-assets/video-and-source-tags/chrome.mp4"
></video>
<ul>
<li>Toan</li>
<li>Hoa</li>
<li>Li</li>
<li>Anh</li>
<li>Yeu</li>
</ul>
- Toan
- Hoa
- Li
- Anh
- Yeu
<ol>
<li>Toan</li>
<li>Hoa</li>
<li>Li</li>
<li>Anh</li>
<li>Yeu</li>
</ol>
- Toan
- Hoa
- Li
- Anh
- Yeu
<input type="text" />
<input type="checkbox" />
<input type="radio" />
<input type="range" />
<input type="date" />
<input type="email" />
<input type="password" />
<textarea />
<button type="button">Click me button<button/>
<button type="submit">Click me submit<button/>
<button type="reset">Click me reset<button/>
<select name="" id="">
<option value="---chọn lựa chọn của bạn---">---chọn lựa chọn của bạn---</option>
<option value"Lựa chọn số 1">Lựa chọn số 1</option>
<option value"Lựa chọn số 2">Lựa chọn số 2</option>
<option value"Lựa chọn số 3">Lựa chọn số 3</option>
<option value"Lựa chọn số 4">Lựa chọn số 4</option>
</select>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d5436.558266166924!2d105.80514108064148!3d20.98302705185573!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3135ad3c4fbc9f81%3A0x86771cef039ba86f!2sNodemy!5e0!3m2!1svi!2s!4v1688014858449!5m2!1svi!2s"
width="100%"
height="200"
style="border: 0"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
></iframe>
Try it