Skip to content

Commit ee7db64

Browse files
authored
Merge pull request #18 from Vets-Who-Code/Dev_Issue3_TF
Issue 3 branch Dev_Issue3_TF
2 parents 4f521c2 + cdd35c5 commit ee7db64

2 files changed

Lines changed: 116 additions & 0 deletions

File tree

Worked_Issues/Issue_3/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Issue 3
2+
3+
### Requirements
4+
In a Pull Request (PR) with a Netlify preview enabled create a HTML webpage with the following:
5+
- three different types of headings
6+
- two paragraphs with three different kinds of inline elements
7+
- A `br` and a `hr`
8+
- A header and footer
9+
- Two different `section`s
10+
- An unordered list of three items
11+
- An anchor tag with a link
12+
- A Form with a `textarea`, three types of `input`s` and a button
13+
- A table with three columns and three rows with a header, body, and footer

Worked_Issues/Issue_3/index.html

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Issue 3</title>
8+
</head>
9+
<body>
10+
<header>
11+
<nav>
12+
<ul>
13+
<li>
14+
<a href="https://www.youtube.com/watch?v=xvFZjo5PgG0">
15+
<h1>First Heading Type</h1>
16+
</a>
17+
</li>
18+
<li>
19+
<a href="#">Home</a>
20+
</li>
21+
<li>
22+
<a href="#">About</a>
23+
</li>
24+
</ul>
25+
</nav>
26+
</header>
27+
<section>
28+
<h3>Second Heading Type</h3>
29+
<p>
30+
<big>An'kenar ieren'</big> pintara enngweca eren eanan'wa belareuta vasaga htenn?
31+
Tuiedi telle faenern name manim teinkawerha namian plotuma.
32+
Termior pllan teler co'gal forya gl'kaaam, ennerana elella taea terema suldaltamela.
33+
Ellla lagueamagon yaasi tuur tamin'daen' llamenila camaeaan enin onarin egar.
34+
Amartama, chaea nang naaulelauva guur mamo.
35+
<br>
36+
<big>Lonim tela htare</big> vaminya tarella chae tina vau', lo'qumiu? Qumarirgoi' taalina ksta marel ranamilte, alin esadu, lomenui yan'?
37+
Feiksin'deau thtarvamaye denalye verlemirw thetae lacotue bedoselea dolya nganari.
38+
Taang leltath teren ellerali' yaeaen iquinll lamerentyar tamam.
39+
Nyasar tondueman nenkaa thrirtir' for'oter aduramio tumiksome leryen.
40+
</p>
41+
<form>
42+
<p>Select if you are:</p>
43+
<input type="radio" name="alive" id="alive">
44+
<label for="alive">Are you alive?</label><br>
45+
<input type="checkbox" name="awesome" id="awesome">
46+
<label for="awesome">Are you awesome?</label><br>
47+
<select name="day" id="mood">
48+
<option value="Happy" selected>Happy</option>
49+
<option value="Meh">Meh</option>
50+
<option value="Sad">Sad</option>
51+
</select>
52+
<label for="mood">Are you awesome?</label><br>
53+
<textarea name="comment">Add Comment Here</textarea><br>
54+
<input type="submit" name="submit" value="send">
55+
</form>
56+
</section>
57+
<section>
58+
<h4>Third Heading Type</h4>
59+
<p>
60+
<strong>Ceriqus sors cornta</strong>, <big>queno edit</big>, umubimi intrus alontacelibt sindus ssis. Atatut goctibicor sicesctat stim, egumpuneri limiritatu ppor ererer?
61+
Fosile cens, sistumit ioncae quata emet mitie! Quma trorigro emerem duim! Exprntinin cebavi cunturstex rirsspr inaec copi liasp.
62+
Saxistititico iscomum nturs ataxibte alibe. Viatqurrr mumedi made, sctamumban scoro.
63+
Sempextat dmde tresere ctuses atum ctus esqua midetisuta fusiodonta aticu lider ctunis.
64+
Prastuss cuihora vanani mirefopr spemare. Ibibis mmus cerer essitum meas namune, pess abum <em>locus etam vesesit oterrm</em>.
65+
</p>
66+
<hr>
67+
<table>
68+
<caption>Years at company</caption>
69+
<thead>
70+
<tr>
71+
<th>Boss</th>
72+
<th>Manager</th>
73+
<th>Grunt</th>
74+
</tr>
75+
</thead>
76+
<tbody>
77+
<tr>
78+
<td>Janet</td>
79+
<td>Jim</td>
80+
<td>Chad</td>
81+
</tr>
82+
</tbody>
83+
<tfoot>
84+
<tr>
85+
<td>16</td>
86+
<td>14</td>
87+
<td>10</td>
88+
</tr>
89+
</tfoot>
90+
</table>
91+
</section>
92+
<aside>
93+
<p>
94+
<em>Bebstu trusl</em> <big>bspabsl bsno rudanga</big>. Xost akostrod zelosp bazed spâsnuzoksp, zeru, tresng trådx babsm.
95+
Tölsngm oludå, tusnodu, takêsts mörasn azazos lelspâsl spâsnozelu rabstör?
96+
Spaxus zelospesno zelus snoga bagabo botsnodab? Razuku abbo bspu, bsnga buroz <strong>bazusp nobukssp</strong>.
97+
</p>
98+
</aside>
99+
<footer>
100+
<p> This is the footer. &copy; Thomas Fitzgerald</p>
101+
</footer>
102+
</body>
103+
</html>

0 commit comments

Comments
 (0)