| <!DOCTYPE html> |
| <html lang="vi"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>DB-chat</title> |
| <style> |
| body { |
| margin: 0; |
| font-family: Arial, sans-serif; |
| line-height: 1.6; |
| color: #333; |
| } |
| |
| header { |
| background: #20232a; |
| color: #fff; |
| padding: 1rem 2rem; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| |
| header h1 { |
| margin: 0; |
| font-size: 1.8rem; |
| } |
| |
| nav a { |
| color: #61dafb; |
| margin-left: 20px; |
| text-decoration: none; |
| font-weight: bold; |
| } |
| |
| .hero { |
| background: linear-gradient(to right, #00b4db, #0083b0); |
| color: white; |
| padding: 100px 20px; |
| text-align: center; |
| } |
| |
| .hero h2 { |
| font-size: 2.5rem; |
| margin-bottom: 20px; |
| } |
| |
| .hero p { |
| font-size: 1.2rem; |
| margin-bottom: 30px; |
| } |
| |
| .hero a { |
| background-color: white; |
| color: #0083b0; |
| padding: 12px 24px; |
| text-decoration: none; |
| border-radius: 5px; |
| font-weight: bold; |
| transition: background-color 0.3s; |
| } |
| |
| .hero a:hover { |
| background-color: #f0f0f0; |
| } |
| |
| footer { |
| background: #20232a; |
| color: white; |
| text-align: center; |
| padding: 1rem 0; |
| position: relative; |
| bottom: 0; |
| width: 100%; |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <header> |
| <h1>DB-chat</h1> |
| <nav> |
| <a href="index.html">Trang chủ</a> |
| <a href="index2.html">Trò chuyện</a> |
| <a href="forms.html">Đánh giá</a> |
| </nav> |
| </header> |
|
|
| <section class="hero"> |
| <h2>Chào mừng bạn đến với DB-chat</h2> |
| <p>Trải nghiệm nền tảng trò chuyện thông minh và tiện lợi nhất.</p> |
| <a href="index2.html">Bắt đầu trò chuyện</a> |
| </section> |
|
|
| <footer> |
| © 2025 DB-chat. Đã đăng ký bản quyền. |
| </footer> |
|
|
| </body> |
| </html> |
|
|