clean up use of divs, decide if other semantic tags can be used
This commit is contained in:
parent
9b3ffeb69f
commit
becd2f4b27
81
index.php
81
index.php
|
@ -7,13 +7,15 @@
|
||||||
<link rel="icon" href="./site-resources/assets/favicon.svg">
|
<link rel="icon" href="./site-resources/assets/favicon.svg">
|
||||||
<link rel="stylesheet" href="style/style.css">
|
<link rel="stylesheet" href="style/style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<?php include "./includes/nav.php" ?>
|
<?php include "./includes/nav.php" ?>
|
||||||
<main>
|
<main>
|
||||||
<section class="welcome-section">
|
<section>
|
||||||
<img class="baxter-welcome-img" src="img/baxter-welcome.webp" alt="My cat Baxter, sitting in a cardboard box looking at the camera.">
|
<img src="img/baxter-welcome.webp" alt="My cat Baxter, sitting in a cardboard box looking at the camera.">
|
||||||
<div class="welcome-text">
|
|
||||||
<h1>Welcome to the homepage of all things Baxter!</h1>
|
<h1>Welcome to the homepage of all things Baxter!</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Baxter is a domestic shorthair cat, with a distinct Mackerel Tabby fur pattern.
|
Baxter is a domestic shorthair cat, with a distinct Mackerel Tabby fur pattern.
|
||||||
His broken stripes together with a long thick stripe down his back resemble that of a tiger!
|
His broken stripes together with a long thick stripe down his back resemble that of a tiger!
|
||||||
|
@ -30,52 +32,44 @@
|
||||||
in bed and fall asleep, typically during the colder months.
|
in bed and fall asleep, typically during the colder months.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h3>Baxter facts!</h3>
|
<h3>Baxter facts!</h3>
|
||||||
<div class="quick-facts">
|
<p>Baxter is:</p>
|
||||||
<div class="baxter-is">
|
<ul>
|
||||||
<p>Baxter is:</p>
|
<li>A cat</li>
|
||||||
<ul>
|
<li>Loving to those he knows</li>
|
||||||
<li>A cat</li>
|
<li>The fastest gun in the West</li>
|
||||||
<li>Loving to those he knows</li>
|
<li>Always comfy</li>
|
||||||
<li>The fastest gun in the West</li>
|
</ul>
|
||||||
<li>Always comfy</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="baxter-is-not">
|
|
||||||
<p>Baxter is not:</p>
|
|
||||||
<ul>
|
|
||||||
<li>A dog</li>
|
|
||||||
<li>Automatically friendly to everyone</li>
|
|
||||||
<li>A fan of changes in routine</li>
|
|
||||||
<li>Anything other than amazing</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="baxter-loves">
|
<p>Baxter is not:</p>
|
||||||
<p>Baxter loves:</p>
|
<ul>
|
||||||
<uL>
|
<li>A dog</li>
|
||||||
<li>Pets</li>
|
<li>Automatically friendly to everyone</li>
|
||||||
<li>Places to cuddle</li>
|
<li>A fan of changes in routine</li>
|
||||||
<li>Food</li>
|
<li>Anything other than amazing</li>
|
||||||
<li>The people who care about him most</li>
|
</ul>
|
||||||
</uL>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="baxter-hates">
|
<p>Baxter loves:</p>
|
||||||
<p>Baxter hates:</p>
|
<ul>
|
||||||
<ul>
|
<li>Pets</li>
|
||||||
<li>Loud noises</li>
|
<li>Places to cuddle</li>
|
||||||
<li>Loud people</li>
|
<li>Food</li>
|
||||||
<li>Closed doors</li>
|
<li>The people who care about him most</li>
|
||||||
<li>Not getting enough cuddle time</li>
|
</ul>
|
||||||
</ul>
|
|
||||||
</div>
|
<p>Baxter hates:</p>
|
||||||
</div>
|
<ul>
|
||||||
|
<li>Loud noises</li>
|
||||||
|
<li>Loud people</li>
|
||||||
|
<li>Closed doors</li>
|
||||||
|
<li>Not getting enough cuddle time</li>
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h3>My favorite photos of Baxter</h3>
|
<h3>My favorite photos of Baxter</h3>
|
||||||
<figure>
|
<figure>
|
||||||
|
@ -99,6 +93,7 @@
|
||||||
<figcaption>Looking shy but owning the look at the same time, he's a natural!</figcaption>
|
<figcaption>Looking shy but owning the look at the same time, he's a natural!</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="goodbye">
|
<section class="goodbye">
|
||||||
<h3>Come back anytime!</h3>
|
<h3>Come back anytime!</h3>
|
||||||
<p>
|
<p>
|
||||||
|
|
Loading…
Reference in New Issue