forked from GCA-Classroom/WD-LL5-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-nehir.html
More file actions
63 lines (61 loc) · 2.59 KB
/
index-nehir.html
File metadata and controls
63 lines (61 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tile by Nehir</title>
<!-- 📌 Add the Bootstrap 5 CDN here when ready -->
<!-- Example: <link href="..." rel="stylesheet"> -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4Q6Gf2aSP4eDXB8Miphtr37CMZZQ5oXLH2yaXMJ2w8e2ZtHTl7GptT4jmndRuHDT" crossorigin="anonymous">
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Main container for your layout -->
<div class="container py-5">
<!-- Heading styled with Playfair Display font and centered -->
<h1
class="text-center mb-4"
style="
font-family: 'Playfair Display', serif;
background-color: #e8d9d6;
"
>
Tile by Nehir
</h1>
<div class="row g-4">
<!-- Starting state: just images, no Bootstrap grid yet -->
<!-- You’ll turn these into responsive tiles during the demo -->
<div class="col-12 col-md-6 col-lg-3 d-flex">
<div class="card card-tile p-3 w-100 align-items-center">
<img src="assets/tile1.jpg" alt="Tile print 1" class="img-fluid mb-3 border-tile" />
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 d-flex">
<div class="card card-tile p-3 w-100 align-items-center">
<img src="assets/tile2.jpg" alt="Tile print 2" class="img-fluid mb-3 border-tile" />
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 d-flex">
<div class="card card-tile p-3 w-100 align-items-center">
<img src="assets/tile3.jpg" alt="Tile print 3" class="img-fluid mb-3 border-tile" />
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 d-flex">
<div class="card card-tile p-3 w-100 align-items-center">
<img src="assets/tile4.jpg" alt="Tile print 4" class="img-fluid mb-3 border-tile" />
</div>
</div>
</div>
<!-- 💡 Later you'll:
- Wrap these in Bootstrap grid classes
- Add .img-fluid and .border-tile
- Use AI to improve layout or spacing
-->
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.6/dist/js/bootstrap.bundle.min.js" integrity="sha384-j1CDi7MgGQ12Z7Qab0qlWQ/Qqz24Gc6BM0thvEMVjHnfYGF0rmFCozFSxQBxwHKO" crossorigin="anonymous"></script>
</body>
</html>