-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex 8.html
More file actions
189 lines (117 loc) · 7.24 KB
/
Copy pathIndex 8.html
File metadata and controls
189 lines (117 loc) · 7.24 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!--Looks like you're ready to get making with Pitt Fuego Webtext Generator. Good luck. Let's remember a few basic things:
1. If you haven't worked through one of our Pitt Fuego introductory tools (Electrate Fuego or I Am...A Project in Becoming), please do so. These programs will give you the basic skills to use this webtext generator.
2. Add content from code repository at the bottom of this file. Copy and paste from <div> to </div>.
3. Pay attention to file management - keep your asset names simple or use camel case.
4. Make sure your code matches your asset/file type. Code is case sensitive,
5. Describe all images and clearly label links and buttons for accessibility purposes.
6. Consult w3.org when your code needs to do more than it does.
7. Control Z, Control Z, Control Z...
8. Publish, share, spread the Fuego!-->
<!--BTW. You can leave these hidden HTML text fields be, or delete them. They are but road signs, absent from the larger design-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Pitt Fuego</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!--To build your webtext, copy the code snippet (provided below) and paste into the <body> section below this line.-->
<div class="textblock" style="text-align: center">
<p> The traveler sails smoothly until a rapid wave attacked the boat. There're no tools to fix the damage! The traveler drowns with the rest of the items</p>
<p> <h2>GAME OVER!</h2></p>
<div class="button">
<a href="Index.html" button aria-label="Start from the Beginning"> Start from the beginning</a>
</div>
<div class="button">
<a href="Index 6.html" button aria-label="Go Back"> Choose a different option </a>
</div>
</div>
<div id="logo">
<img src="fuego.jpg" alt="Pitt Fuego Flame" style="max-width:25%;max-height:25%;">
<p><b>generated by <a href="https://pitt-fuego.github.io/Pitt-Fuego-Coding-Tools/">Pitt Fuego</a></b></p>
<p><em>Why make a spark when you can light a fire?</em></p>
</div>
</body>
</html>
<!--Code Snippets - Looking to add components? You've come to the right place. Copy code snippets from <div> to </div> and add to the body section. Adjust class properties on style.css.
***Add Text Block***
(Format textblock using inline styling: text-align: left, center, justify, right; Format text: Italics: <em>italics</em>; Bold: <b>bold</b>; Link Website: <a href="link">LinkName</a>; Link Asset: <a href=filename.pdf>FileName</a>; Line Breaks: <br></br>)
(use <h3> header and <p> for longer content)
<div class="textblock" style="text-align: left">
<h2>Header</h2>
<h3>We recommend using our mobile-ready text sizing. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h3>
</div>
***Add Block Quote***
(Format text: Italics: <em>italics</em>; Bold: <b>bold</b>. For more stylings, find blockquote class on style.css)
<div class="blockquote" style="text-align: center">
<h2>Excepteur sint occaecat cupidatat non proident!</h2>
</div>
***Add Bulleted Points to Textblock***
(Change <ul></ul> to <ol></ol> to change from unordered list to ordered list. For more stylings, find the ul/li classes on style.css)
<div class= "ul">
<li>first</li>
<li>second</li>
<li>third</li>
</div>
-or- (try a nested list)
<div class="ul">
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</div>
***Add a Button***
(Clearly label button for accessibility purposes. If this is not possible, include: aria-label=”label for accessibility purposes.” For more stylings, find button class on style.css)
<div class="buttonbox">
<a href="https://pitt-fuego.github.io/Pitt-Fuego-Coding-Tools/" class="button" aria-label="">Button</a>
</div>
***Embed YouTube Video***
<div class="video">
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/QzMJtLUncIg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<p>Add a caption.</p>
</div>
***Add a Standard Image***
(Control image properties with inline width value.)
<img src="fuego.jpg" alt="describe the image HERE for accessibility purposes" style="width:30%;" class="center-img">
<p style="text-align: center"><em>Add a caption.</em></p>
***Add Image Block with Padding and Caption*** (Control image properties with inline width value.)
<div class="imgageblock">
<img src="fuego.jpg" alt="describe the image HERE for accessibility purposes" style="width:100%;">
<p style="text-align: center"><em>Add a caption.</em></p>
</div>
***Add a Photo Grid***
<div class="photogrid">
<div class="row">
<div class="column">
<img src="pgrid1.jpg" alt="describe the image HERE for accessibility purposes">
<img src="pgrid2.jpg" alt="describe the image HERE for accessibility purposes">
</div>
<div class="column">
<img src="pgrid3.jpg" alt="describe the image HERE for accessibility purposes">
<img src="pgrid4.jpg" alt="describe the image HERE for accessibility purposes">
</div>
<div class="column">
<img src="pgrid5.jpg" alt="describe the image HERE for accessibility purposes">
<img src="pgrid6.jpg" alt="describe the image HERE for accessibility purposes">
</div>
</div>
<p><em>Add a caption.</em></p>
</div>
***Add a Parallax Window***
(To adjust window, find parallax class on style.css)
<div class="parallax"></div>
***Add a Copyright Footer***
<div id="footer">
<p>Copyright Your Name, Year.</p>
</div>
***Need something that's not here? Then you probably don't need it. But okay...go to w3 Schools***
Looking to publish this webtext in GitHub? Here are your next steps:
Sign in to GitHub. Create a new repository. Name it. Click “uploading an existing file,” then select/drag and drop all of your files... all of them, index.html. style.css, readme, and your image assets. Click "commit." Now go to your repository "settings." Scroll down to "Pages." Here you will change "source" from "none" to "main" branch. This will publish your webtext online. Copy your URL from this settings page...and now it's time to circulate your webtext! Peace and love only, Stephen Quigley, University of Pittsburgh, 2021.-->