commit 5dcc391c0d21efb430e84a3dedb160ba25826abd
parent ce98269f20164cb68471657a7fac9f13fa81794c
Author: Zane Schaffer <znschaffer@gmail.com>
Date: Tue, 6 Aug 2024 10:30:07 -0700
change literally a single word
Diffstat:
9 files changed, 34 insertions(+), 14 deletions(-)
diff --git a/c.css b/c.css
@@ -415,7 +415,7 @@ a:visited {
color: #1a1a1a;
}
img {
- max-width: 100%;
+ max-width: 50%;
}
h1,
h2,
@@ -530,6 +530,13 @@ div.hanging-indent {
margin-left: 1.5em;
text-indent: -1.5em;
}
+
+div.gallery {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+}
+
ul.task-list {
list-style: none;
}
diff --git a/img/building2.jpeg b/img/building2.jpeg
Binary files differ.
diff --git a/img/building_top.jpeg b/img/building_top.jpeg
Binary files differ.
diff --git a/img/ladder.jpeg b/img/ladder.jpeg
Binary files differ.
diff --git a/img/lightpool.jpeg b/img/lightpool.jpeg
Binary files differ.
diff --git a/img/palace.jpeg b/img/palace.jpeg
Binary files differ.
diff --git a/img/plant1.jpeg b/img/plant1.jpeg
Binary files differ.
diff --git a/index.html b/index.html
@@ -54,7 +54,7 @@
programming language design, studying higher level math and calculus,
researching self-hosted projects, and making noises on my synths.</p>
<p>A lot of my current time is taken up by the <em>pursuit of
- education</em> I am subjecting myself to. I have gone <em>self-taught</em> for most
+ education</em> I am subjecting myself to. I have been <em>self-taught</em> for most
everything in computer science but enough is enough! Through this
process, I have discovered an odd, but intriguing appreciation for
mathematics I did not possess before. Luckily, audio programming, and
diff --git a/photos.html b/photos.html
@@ -1,21 +1,35 @@
<!DOCTYPE html>
<html lang="en">
+
<head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
- <title>My Photography</title>
- <link rel="stylesheet" href="c.css">
- <meta name="description" content="Zane Schaffer's Lovely Indescribable Information and Tasty Site">
- <link rel="icon" type="image/x-icon"
- href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>↔</text></svg>">
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
+ <title>My Photography</title>
+ <link rel="stylesheet" href="c.css">
+ <meta name="description" content="Zane Schaffer's Lovely Indescribable Information and Tasty Site">
+ <link rel="icon" type="image/x-icon"
+ href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>↔</text></svg>">
</head>
+
<body>
-<header id="title-block-header">
+ <header id="title-block-header">
<h1 class="title">My Photography</h1>
<p class="subtitle">Visual memories and such</p>
-</header>
-<p><img src="img/tulips.JPG" alt="tulips"> <img src="img/northpole.JPG" alt="north poles"></p>
+ </header>
+ <!-- TODO add alt tags -->
+ <div class="gallery">
+ <img src="img/tulips.JPG" alt="tulips">
+ <img src="img/northpole.JPG" alt="">
+ <img src="img/palace.jpeg" alt="">
+ <img src="img/lightbulb.jpeg" alt="">
+ <img src="img/ladder.jpeg" alt="">
+ <img src="img/plant1.jpeg" alt="">
+ <img src="img/building_top.jpeg" alt="">
+ <img src="img/lightpool.jpeg" alt="">
+ <img src="img/building2.jpeg" alt="">
+ </div>
</body>
-</html>
-\ No newline at end of file
+
+</html>