-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.html
69 lines (52 loc) · 2.77 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Linking It All Together</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Give this h1 an id of "top"-->
<h1>Linking It All Together</h1>
<!--See the README.md for additional instructions.-->
<!--FIRST add an image with a src of the html.jpeg in the images subfolder.
This is an example of a relative link. -->
<!--SECOND add some text with a link to your favorite website.
Make it open in a new tab/window.
This is an example of an absolute link.-->
<!--THIRD, use the navigation below to create links to each
individual paragraph of text. (use the id attribute in each p tag below!) -->
<h3>Navigation:</h3>
<ul>
<li><a href="#paragraph1">Paragraph 1</a></li>
<li>Paragraph 2</li>
<li>Paragraph 3</li>
</ul>
<!-- If you wish, you can replace the text below with something else -->
<br />
<p id="paragraph1">Spicy jalapeno bacon ipsum dolor amet pastrami ham hock bresaola meatloaf drumstick, doner
turducken leberkas strip steak t-bone corned beef venison filet mignon brisket pork belly. Cow biltong pork
corned beef brisket, meatball pork chop. Ball tip cupim prosciutto boudin cow. Kevin pork chop landjaeger,
drumstick jowl short loin pork tail. Fatback corned beef cow jerky. Kielbasa ground round cow picanha,
landjaeger chuck tail frankfurter sirloin corned beef.</p>
<br />
<br />
<br />
<p>Chicken pork chop biltong short ribs meatball turkey boudin ground round ball tip kielbasa hamburger tail
drumstick. Drumstick shankle spare ribs sirloin meatball cow shoulder picanha, bacon chicken cupim sausage
kielbasa. Venison pork bresaola frankfurter chuck biltong ham porchetta sirloin burgdoggen brisket beef. Cow
corned beef brisket prosciutto jerky short loin.</p>
<!-- Add some extra line breaks between each paragraph! -->
<p>Prosciutto burgdoggen meatball chicken t-bone short loin. Burgdoggen salami shoulder short ribs swine tail bacon
jerky beef ribs spare ribs. Pork chop ham hock burgdoggen biltong brisket bacon. Bacon spare ribs brisket, pork
chop cupim jerky chicken kielbasa tri-tip pork loin meatloaf drumstick strip steak andouille. Shank salami pig.</p>
<br />
<!--Make a link that jumps back to the top of the page.-->
Back to top
<!-- In case you were wondering... -->
<em>Where did this silly text come from?</em>
<p><a href="https://baconipsum.com" target="_blank">Bacon Ipsum</a> - "A Meatier <a href="https://lipsum.com/"
target="_blank">Lorem Ipsum</a> Generator"</p>
</body>
</html>