Created
December 15, 2024 03:38
-
-
Save vancuong4662/3945df2c8324d8dffad05f25ab05a2dc to your computer and use it in GitHub Desktop.
Mẫu code buổi 3 - jsa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
| <title>Shop</title> | |
| <style> | |
| body { | |
| background-color: gray; | |
| } | |
| .web-container { | |
| width: 50%; | |
| margin: auto; | |
| height: 100vh; | |
| background-color: wheat; | |
| } | |
| .item-box { | |
| height: 300px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="web-container w3-padding"> | |
| <div class="w3-row" id="item-zone"> | |
| <div class="w3-col l3 s6"> | |
| <div class="w3-container w3-padding item-box"> | |
| <div class=" w3-card-4 w3-padding"> | |
| <div class="w3-display-container"> | |
| <img src="items/34.png" style="width:100%"> | |
| <div class="w3-display-topleft w3-tag"><b>$24.99</b></div> | |
| <div class="w3-display-middle"> | |
| <button class="w3-button w3-red w3-round-large w3-display-hover"><b><i class="fa fa-shopping-cart"></i> Mua hàng</b></button> | |
| </div> | |
| </div> | |
| <div class="w3-tag w3-block w3-margin-top w3-round-large w3-padding w3-indigo">Cần câu loại sang</div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| // Bắt đầu code ở đây ... | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment