Add style.css and add basic layout to index.html

This commit is contained in:
Thuan Bui
2025-02-08 18:57:50 +09:00
parent 57808a610d
commit 20cb4955a0
2 changed files with 8 additions and 1 deletions
+8 -1
View File
@@ -4,8 +4,15 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">Header</header>
<div class="main">
<div class="hero">Hero</div>
<div class="section1">Section 1</div>
<div class="section2">Section 2</div>
</div>
<footer class="footer">Footer</footer>
</body>
</html>
View File