-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
170 lines (116 loc) · 4.96 KB
/
Copy pathindex.html
File metadata and controls
170 lines (116 loc) · 4.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cafe 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>
<!--Looks like you're ready to get going on your webpage. Good luck. Let's remember a few basic things.
1. If you haven't worked through one of our Open Fuego introductory assignmnets (Electrate Fuego or I-Am-A-Project-In-Becoming), please do so. It will give you the basic skills to use this tool.
2. File Management. Keep your asset names simple and one word.
3. Make sure your assets names/file type match your code.
4. Describe all images for accesibility purposes.
5. Consult W3 when our code is not working for you.
6. Control Z, Control Z, Control Z
7. 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-->
<body>
<!-- Change Title and subtitle. Replace hero image on style.css page. -->
<div class="hero-image">
<div class="hero-text">
<h1>Cafe Fuego Presents</h1>
<h2>Plato's Man Cave</h2>
<a href="intro.html"><center><button>Click if you must</button></center></a>
</div>
</div>
<!-->Copyright John Blair 2022
</body>
</html>
<!--Looking to add components? You've come to the right place. Copy and Paste Code Snippets
-------------------------------------------------------------------------------------------
***Add Text Block***
Instructions: Format textblock left, center, justify, right;
Format text: Italics:<em>Italics</em>; Bold:<b>Bold</b>; Link Website <a href="https://ex>HERE"</a>; Link Asset <a href=filename.pdf>HERE</a>; Line Breaks/Spaces: <br>;
Code:
<div class="textblock" style="text-align: left">
<h1>Header</h1>
<h2>We recommend using our mobile-ready H1 and H2 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.</h2>
</div>
<br>
<br>
<br>
<br>
***Add Bulleted Points***
<div class=bulleted-points>
<ul>
<li>first</li>
<li>second</li>
<li>third</li>
</ul>
<div>
<br>
<br>
<br>
<br>
***Add an Image***
Instructions: Control image with height/width value.
*Centered Image (Any Size - adjust max width/height percentages)*
<div>
<img src="fuego.jpg" alt="describe the image HERE for accessibility purposes" class="center-image" style="max-width:30%; max-height:30%;">
</div>
<br>
<br>
<br>
<br>
*Full Width Image*
(Notice that images of 100% don't need .css class)
<div>
<img src="fuego.jpg" alt="describe the image HERE for accessibility purposes" style="width:100%;">
</div>
<br>
<br>
<br>
<br>
***Add a Photo Grid***
<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>
<br>
<br>
<br>
<br>
***Add a Parallax Window***
***Add a Button Link***
<a href="https://open-fuego.github.io/Open-Fuego-Coding-Tools/"><center><button>CLICK HERE</button></center></a>
***Embed YouTube Video***
<div style="text-align: center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO ID" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>Describe your image HERE</p>
</div>
<br>
<br>
<br>
<br>
***Add a Copyright Footer***
<footer>
<div class="container">
<p>Copyright Your Name, Year.</p>
</div>
</footer>
***Need something that's not here? Then you probably don't need it. But okay...go to w3 Schools***
-->
<!--Looking to publish this page in GitHub? Here are your next steps:
Sign in to GitHub. Create new repository. Name it. Click upload, and select/drag and drop all of you files... all of them, index.html. style.html, readme, and your image assets. Click "commit." Now go to your repository "settings." Scroll down to "GitHub Pages." Here you will change "source" from "none" to "master branch." This will publish your Open Fuego online. Find, copy your URL from this settings page...and now it's time to spread the fire! Open Fuego! Peace and love only, Stephen Quigley, University of Pittsburgh, 2020.
-->