-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
85 lines (79 loc) · 4.33 KB
/
Copy pathmain.html
File metadata and controls
85 lines (79 loc) · 4.33 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS v5.2.1 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
</head>
<body>
<header>
<!-- place navbar here -->
</header>
<main>
<main>
<section class="container my-5">
<div class="row mb-4">
<div class="col">
<h1 class="display-5">Welcome to Our Gallery</h1>
<p class="lead">
Explore our curated collection of images below. Each column showcases a unique perspective.
</p>
</div>
</div>
<div class="row row-cols-1 row-cols-md-4 g-4">
<div class="col">
<img src="https://picsum.photos/300/200?random=1" class="img-fluid rounded" alt="Gallery Image 1">
</div>
<div class="col">
<img src="https://picsum.photos/300/200?random=2" class="img-fluid rounded" alt="Gallery Image 2">
</div>
<div class="col">
<img src="https://picsum.photos/300/200?random=3" class="img-fluid rounded" alt="Gallery Image 3">
</div>
<div class="col">
<img src="https://picsum.photos/300/200?random=4" class="img-fluid rounded" alt="Gallery Image 4">
</div>
</div>
</section>
<section class="container my-5">
<div class="row mb-5 align-items-center">
<div class="col-md-6">
<img src="https://picsum.photos/500/300?random=10" class="img-fluid rounded" alt="Gallery Image 1">
</div>
<div class="col-md-6">
<h2>First Feature</h2>
<p>This is the description for the first feature. It highlights the unique aspects of this image and what it represents.</p>
</div>
</div>
<div class="row mb-5 align-items-center flex-md-row-reverse">
<div class="col-md-6">
<img src="https://picsum.photos/500/300?random=11" class="img-fluid rounded" alt="Gallery Image 2">
</div>
<div class="col-md-6">
<h2>Second Feature</h2>
<p>This is the description for the second feature. The layout switches sides for visual interest and balance.</p>
</div>
</div>
<div class="row mb-5 align-items-center">
<div class="col-md-6">
<img src="https://picsum.photos/500/300?random=12" class="img-fluid rounded" alt="Gallery Image 3">
</div>
<div class="col-md-6">
<h2>Third Feature</h2>
<p>This is the description for the third feature. Continue alternating layouts for a dynamic presentation.</p>
</div>
</div>
</section>
</main>
</main>
<footer>
<!-- place footer here -->
</footer>
<!-- Bootstrap JavaScript Libraries -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
</body>
</html>