-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdogpage.html
More file actions
80 lines (59 loc) · 1.73 KB
/
Copy pathdogpage.html
File metadata and controls
80 lines (59 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="dogstyle.css">
<title>Dog Gallery</title>
</head>
<body>
<div class="page">
<!-- Top image grid -->
<div class="image-grid">
<div class="large-img">
<img src="pibble.png" alt="Pibble">
</div>
<div class="large-img">
<img src="pibble2.png" alt="Pibble 2">
</div>
<div class="small-img">
<img src="pibble3.png" alt="Pibble 3">
</div>
<div class="small-img">
<img src="pibble4.png" alt="Pibble 4">
</div>
<div class="small-img">
<img src="pibble7.png" alt="Pibble 5">
</div>
<div class="small-img">
<img src="pibble6.png" alt="Pibble 6">
</div>
</div>
<!-- Title + description + side image -->
<div class="info-section">
<div class="title-box">
<h1>THE ONE AND ONLY PIBBLE</h1>
<p>
I am the one and only Pibble<br>
Pibbly, Pibbling, Pibbling<br>
This is Pibbnema<br>
Clean my belly<br>
(The one and only Pibble, 2025)
</p>
</div>
<div class="side-img">
<img src="pibble5.png" alt="Pibble 7">
</div>
</div>
<!-- Navigation links -->
<div class="links">
<a class="link-btn" href="index.html">Home</a>
<a class="link-btn" href="gifpage.html">Dancing!</a>
<a class="link-btn" href="dogpage.html">Pibbles (You are here)</a>
<a class="link-btn" href="goalpage.html">Daily goals</a>
<a class="link-btn" href="otherpagepage.html">Other fun places</a>
<a class="link-btn" href="sourcepage.html">Sources of negativity</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>