-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.html
38 lines (35 loc) · 1.33 KB
/
grid.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grid Layout Example</title>
<link rel="stylesheet" href="css/grid-styles.css">
</head>
<body>
<div class="grid-container">
<header class="header">
<h1>Welcome to Grid Layout</h1>
</header>
<main class="main-content">
<article class="content">
<h2>Main Content</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p>
<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.</p>
</article>
<aside class="sidebar">
<h3>Sidebar</h3>
<ul>
<li>Latest News</li>
<li>Popular Posts</li>
<li>Categories</li>
<li>Archives</li>
</ul>
</aside>
</main>
<footer class="footer">
<p>© 2024 Grid Layout Example. All rights reserved.</p>
</footer>
</div>
</body>
</html>