Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

2022 #1

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Web-Dev-Bootcamp-Project-Files

**1.3.21**

Completed up to section 4.

**10.24.21**

Back at it again, but this time it's w/ the updated material.
Expand Down
17 changes: 17 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<body>
<h1>About Me</h1>

<p>I am a a human.</p>
<a href="chickens.html">Go Home</a>.
</body>

</html>
13 changes: 13 additions & 0 deletions app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
h2 {
color:teal;
background-color: plum;
}

button {
color: magenta;
background-color: cyan;
}

p {
color: : olive;
}
56 changes: 33 additions & 23 deletions chickens.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,29 +11,39 @@
</head>
<body bgcolor="#f4e8a4">

<center>
<h1><font color="ef3038">CHICKENS!!!</font></h1>
</center>
<main>
<section>
<center>
<h1><font color="#ef3038">CHICKENS!!!</font></h1>
</center>

<center>
<img src="maleFemChix.jpg" height="300" width="250">
</center>
<p>
The <strong>chicken</strong> <em>(Gallus gallus domesticus)</em> is a domesticated subspecies of the red junglefowl originally from Southeastern Asia. <strong>Rooster</strong> or <strong>cock</strong> is a term for an adult male bird, and younger male may be called a <strong>cockerel</strong>. A male that has been castrated is a <strong>capon</strong>. An adult female bird is called a <strong>hen</strong> and a sexually immature female is called a <strong>pullet</strong>.
</p>
</section>

<section>
<h2>Habitat & Biology</h2>
<!--Let's pretend we added links to this.-->
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Placeat nulla, modi sunt dolore saepe ea molestias maxime, in quaerat voluptates omnis amet natus, odio ipsum accusamus beatae possimus quidem quibusdam!
</p>
<center>
<img src="edChickens.gif">
</center>
</section>
</main>

<center>
<img src="maleFemChix.jpg" height="300" width="250">
</center>

<p>
The <strong>chicken</strong> <em>(Gallus gallus domesticus)</em> is a domesticated subspecies of the red junglefowl originally from Southeastern Asia. <strong>Rooster</strong> or <strong>cock</strong> is a term for an adult male bird, and younger male may be called a <strong>cockerel</strong>. A male that has been castrated is a <strong>capon</strong>. An adult female bird is called a <strong>hen</strong> and a sexually immature female is called a <strong>pullet</strong>.
</p>

<h2>Habitat & Biology</h2>

<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Placeat nulla, modi sunt dolore saepe ea molestias maxime, in quaerat voluptates omnis amet natus, odio ipsum accusamus beatae possimus quidem quibusdam!
</p>

<center>
<img src="edChickens.gif">
</center>


<script src="" async defer></script>
</body>

<footer>
<p>This is my website.</p>
<ul>
<li><a href="#">Contact</a></li>
<li><a href="#">Help</a></li>
</ul>
</footer>
</html>
4 changes: 4 additions & 0 deletions cuttlefish/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
h1 {
text-align: right;
width: 50%;
}
30 changes: 30 additions & 0 deletions cuttlefish/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<title>CSS Text Properties</title>
</head>
<body>
<h1>Cuttlefish</h1>

<p>
Sepiolida Fioroni, 1981[1]
Cuttlefish or cuttles[2] are marine molluscs of the order Sepiida. They belong to the class Cephalopoda, which also includes squid, octopuses, and nautiluses. Cuttlefish have a unique internal shell, the cuttlebone, which is used for control of buoyancy.
</p>

<p>
Cuttlefish have large, W-shaped pupils, eight arms, and two tentacles furnished with denticulated suckers, with which they secure their prey. They generally range in size from 15 to 25 cm (6 to 10 in), with the largest species, Sepia apama, reaching 50 cm (20 in) in mantle length and over 10.5 kg (23 lb) in mass.[3]
</p>

<p>
Cuttlefish eat small molluscs, crabs, shrimp, fish, octopus, worms, and other cuttlefish. Their predators include dolphins, sharks, fish, seals, seabirds, and other cuttlefish. The typical life expectancy of a cuttlefish is about 1–2 years. Studies are said to indicate cuttlefish to be among the most intelligent invertebrates.[4] Cuttlefish also have one of the largest brain-to-body size ratios of all invertebrates.[4]
</p>

<p>
The "cuttle" in cuttlefish comes from the Old English name for the species, cudele, which may be cognate with the Old Norse koddi (cushion) and the Middle Low German Kudel (rag).[5] The Greco-Roman world valued the cuttlefish as a source of the unique brown pigment the creature releases from its siphon when it is alarmed. The word for it in both Greek and Latin, sepia, now refers to the reddish-brown color sepia in English.
</p>
</body>
</html>
39 changes: 39 additions & 0 deletions emmetDemo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emmet Demo</title>
</head>
<body>
<main>
<section>
<h1>OMG</h1>
<h1>YAS AGAIN</h1>
</section>
</main>

<p>YAS</p>
<p>skdfhkdsjh</p>
<p>ASASA</p>

<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>

<nav>
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
</nav>
</body>
</html>
90 changes: 90 additions & 0 deletions forms.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms Demo</title>
</head>
<body>
<h1>Forms Demo</h1>

<form action="/tacos">
<p>
<label for="username">Enter a username:</label>
<input type="text" placeholder="username" id="username" name="username">
</p>

<p>
<label for="password">Enter a password:</label>
<input type="password" placeholder="password" id="password" name="password">
</p>

<p>
<label for="color">Please pick a color:</label>
<input type="color" id="color" name="color">
</p>

<p>
<label for="number">Please enter a number</label>
<input type="number" placeholder="enter a number" id="number" name="number">
</p>

<button>Submit</button>
</form>

<!-- Outside of a form, no default behavior -->
<button>Not Inside Form</button>
<form action="something">
<input type="text" name="query">
<button>Search Reddit</button>
</form>

<h2>More Inputs</h2>
<form action="/birds">
<input type="checkbox" name="agree_tos" id="agree" checked>
<label for="agree">I agree to everything.</label>
<p>
<label for="s">Small</label>
<input type="radio" name="size" id="s" value="small">

<label for="m">Medium</label>
<input type="radio" name="size" id="m" value="medium">

<label for="l">Large</label>
<input type="radio" name="size" id="l" value="large">
</p>

<p>
<label>Please select a Entree</label>
<select name="meal" id="meal">
<option value="">--Please chose an option--</option>
<option value="fish">Fish</option>
<option value="veg">Vegetarian</option>
<option value="steak">Steak</option>
</select>
</p>
<p>
<label for="cheese">Amount of Cheese:</label>
<input type="range" id="cheese" min="1" max="10" step="7" value="75" name="cheeseLevel">
</p>
<p>
<label for="">Any special requests?</label>
<textarea id="requests" rows="10" cols="20" name="requests" placeholder="Special Requests">
</textarea>
</p>
<button>Submit</button>
</form>

<h2>Validations Demo</h2>
<form action="/dummy">
<label for="first">Enter First Name:</label>
<input type="text" name="first" required>
<p>
<label for="username">Username</label>
<input type="text" id="username" name="username" minlength="5" maxlength="20">
</p>
<button>Submit</button>
</form>
</body>
</html>
84 changes: 84 additions & 0 deletions heaviestBirds.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Heaviest Birds Table</title>
</head>
<body>
<h1>Heaviest Birds</h1>

<table>
<thead>
<tr>
<th>Animal</th>
<th>Average Mass [kg (lbs)]</th>
<th>Maximum Mass [kg (lbs)]</th>
<th>Flighted Animal?</th>
</tr>
</thead>

<tbody>
<tr>
<td>Ostrich</td>
<td>104kg (230lbs)</td>
<td>156.8kg (346lbs)</td>
<td>No</td>
</tr>
<tr>
<td>Somali Ostrich</td>
<td>90kg (230lbs)</td>
<td>130kg (287lbs)</td>
<td>No</td>
</tr>
<tr>
<td>Wild Turkey</td>
<td>13.5kg (29.8lbs)</td>
<td>39kg (86lbs)</td>
<td>Yes</td>
</tr>
</tbody>
</table>

<!--VERSION 2-->

<h1>V2</h1>

<table>
<thead>
<tr>
<th rowspan="2">Animal</th>
<th colspan="2">Average Mass</th>
<th rowspan="2">Flighted Animal?</th>
</tr>

<tr>
<th>KG</th>
<th>LBS</th>
</tr>
</thead>

<tbody>
<tr>
<td>Ostrich</td>
<td>104kg</td>
<td>230lbs</td>
<td>No</td>
</tr>
<tr>
<td>Somali Ostrich</td>
<td>90kg</td>
<td>230lbs</td>
<td>No</td>
</tr>
<tr>
<td>Wild Turkey</td>
<td>13.5kg</td>
<td>29.8lbs</td>
<td>Yes</td>
</tr>
</tbody>
</table>
</body>
</html>
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="app.css">
<title>A Test Page</title>
</head>
<body>
<h2>I am an h2</h2>
<h2>I am an h2</h2>
<h2>I am an h2</h2>

<button>Button 1</button>
<button>Button 2</button>

Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio dolor, voluptatum nisi, praesentium quas mollitia aliquam veniam laboriosam reiciendis, nesciunt ad sequi tempora ducimus rem modi doloremque quo earum? Ad.
</body>
</html>
Loading