-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.79 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.79 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Simple Collab Page</title>
<style>
body { font-family: system-ui, Arial, sans-serif; max-width: 800px; margin: 2rem auto; padding: 0 1rem; }
header { text-align: center; margin-bottom: 1.5rem; }
img { max-width: 100%; height: auto; display: block; margin: 0.5rem auto; border-radius: 8px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; }
</style>
</head>
<body>
<header>
<h1>welcome to our practice cat blog repo</h1>
<p>a tiny page to practice branches and pull requests.</p>
</header>
<section>
<h2>about this page</h2>
<p>this repository is set up so we can each create a branch, add text and images about our cats/pets/fur friends, then open a pull request.</p>
</section>
<section>
<h2>our gallery</h2>
<div class="gallery">
<figure>
<img src="images/juno1.jpeg" alt="Photo 1">
<figcaption>juno — diana's 3yo orange cat full of energy who loves to play with wand toys and is always up for a churu treat</figcaption>
</figure>
<figure>
<img src="images/andy1.jpeg" alt="Photo 2">
<figcaption>andy — diana's 10yo maltese dog who is the sweetest thing (juno's best friend)</figcaption>
</figure>
<figure>
<img src="images/.jpeg" alt="Photo 2">
<figcaption>suki — steph's cat</figcaption>
</figure>
<figure>
<img src="images/.jpeg" alt="Photo 2">
</figure>
</div>
</section>
<footer style="text-align:center; margin-top:2rem;">
<small>this page is made for practicing git branches and collaboration -steph & diana</small>
</footer>
</body>
</html>