-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.html
More file actions
272 lines (243 loc) · 9.82 KB
/
welcome.html
File metadata and controls
272 lines (243 loc) · 9.82 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Content Elements</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<!--<!– Part One–>-->
<!--<!– For this exercise, we will continue working in the welcome.html file. We will be creating a landing page for the fictional company Veridian Dynamics.–>-->
<!--<!– Recreate this image with HTML, focusing only in the HTML elements necessary to have a good structure.–>-->
<!--<!– Specifications:–>-->
<!--<!– Make sure the text in the tag line below the heading at the top is properly bolded and italicized.–>-->
<!--<!– The pricing plan at the bottom is a table.–>-->
<!--<!– The link at the bottom of the page should take you to the top of the page when clicked.–>-->
<!--<!– Use DON'T NEED semantic elements for the layout.–>-->
<!--<!– You can obtain free stock photos to work with from pexels.–>-->
<!--<h1>Welcome to Veridian Dynamics!</h1>-->
<!--<p>At Veridian Dynamics <strong>we</strong> solve <em>your</em> problems with <strong><em>technology</em></strong></p>-->
<!--<hr>-->
<!--<h2>Core Values</h2>-->
<!-- <ul>-->
<!-- <li>Competence</li>-->
<!-- <li>Involvement</li>-->
<!-- <li>Technology</li>-->
<!-- </ul>-->
<!--<h2>Our Process</h2>-->
<!--<ol>-->
<!-- <li>Plan</li>-->
<!-- <li>Evaluate</li>-->
<!-- <li>Implement</li>-->
<!--</ol>-->
<!--<h2>2020 Vision</h2>-->
<!--<ul>-->
<!-- <li>Become #1 in Technology</li>-->
<!-- <li>Increase Success by 20%</li>-->
<!-- <li>Increase Business by 30%</li>-->
<!--</ul>-->
<!--<hr>-->
<!--<h2>Company Vision</h2>-->
<!--<img src="https://images.pexels.com/photos/4424567/pexels-photo-4424567.jpeg?auto=compress&cs=tinysrgb&w=800" height="200">-->
<!--<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800" height="200">-->
<!--<br>-->
<!--<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800"width="200">-->
<!--<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800"width="200">-->
<!--<h2>Our Product</h2>-->
<!--<table>-->
<!-- <thead>-->
<!-- <tr>-->
<!-- <th>Plan</th>-->
<!-- <th>Price</th>-->
<!-- <th>Features</th>-->
<!-- </tr>-->
<!-- </thead>-->
<!-- <tr>-->
<!-- <td>Starter</td>-->
<!-- <td>$99</td>-->
<!-- <td>Base Technology</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td>Advanced</td>-->
<!-- <td>$199</td>-->
<!-- <td>Additional Features</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td>Premium</td>-->
<!-- <td>$499</td>-->
<!-- <td>Unlimited Support</td>-->
<!-- </tr>-->
<!--</table>-->
<!--<p><em>All products come with our quality guarantee™.</em></p>-->
<!--<p><a href="#">Go to the top of the page</a></p>-->
<!--<!– ---------------------------------------------------–>-->
<!--<!DOCTYPE html>-->
<!--<html lang="en">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!-- <title>Veridian Dynamics</title>-->
<!--</head>-->
<!--<body>-->
<!--<header>-->
<!-- <h1>Welcome to Veridian Dynamics</h1>-->
<!-- <p><strong><em>Your source for innovative solutions.</em></strong></p>-->
<!--</header>-->
<!--<main>-->
<!-- <section>-->
<!-- <h2>About Us</h2>-->
<!-- <p>Veridian Dynamics is a leading company in providing innovative solutions to your everyday problems.</p>-->
<!-- </section>-->
<!-- <section>-->
<!-- <h2>Our Services</h2>-->
<!-- <ul>-->
<!-- <li>Product Development</li>-->
<!-- <li>Research & Development</li>-->
<!-- <li>Quality Control</li>-->
<!-- </ul>-->
<!-- </section>-->
<!--</main>-->
<!--<footer>-->
<!-- <h2>Pricing Plans</h2>-->
<!-- <table>-->
<!-- <thead>-->
<!-- <tr>-->
<!-- <th>Plan</th>-->
<!-- <th>Price</th>-->
<!-- </tr>-->
<!-- </thead>-->
<!-- <tbody>-->
<!-- <tr>-->
<!-- <td>Basic</td>-->
<!-- <td>$99/month</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td>Premium</td>-->
<!-- <td>$199/month</td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- <a href="#header">Back to Top</a>-->
<!--</footer>-->
<!--</body>-->
<!--</html>-->
<!--<!– -------------------------------–>-->
<!--<!DOCTYPE html>-->
<!--<html lang="en">-->
<!--<head>-->
<!-- <meta charset="UTF-8">-->
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!-- <title>Veridian Dynamics</title>-->
<!--</head>-->
<!--<body>-->
<!-- <header>-->
<!-- <h1>Welcome to Veridian Dynamics</h1>-->
<!-- <p><strong><em>Your source for innovative solutions.</em></strong></p>-->
<!-- </header>-->
<!-- <main>-->
<!-- <section>-->
<!-- <h2>About Us</h2>-->
<!-- <p>Veridian Dynamics is a leading company in providing innovative solutions to your everyday problems.</p>-->
<!-- </section>-->
<!-- <section>-->
<!-- <h2>Our Services</h2>-->
<!-- <ul>-->
<!-- <li>Product Development</li>-->
<!-- <li>Research & Development</li>-->
<!-- <li>Quality Control</li>-->
<!-- </ul>-->
<!-- </section>-->
<!-- </main>-->
<!-- <footer>-->
<!-- <h2>Pricing Plans</h2>-->
<!-- <div class="table-container">-->
<!-- <table>-->
<!-- <thead>-->
<!-- <tr>-->
<!-- <th>Plan</th>-->
<!-- <th>Price</th>-->
<!-- </tr>-->
<!-- </thead>-->
<!-- <tbody>-->
<!-- <tr>-->
<!-- <td>Basic</td>-->
<!-- <td>$99/month</td>-->
<!-- </tr>-->
<!-- <tr>-->
<!-- <td>Premium</td>-->
<!-- <td>$199/month</td>-->
<!-- </tr>-->
<!-- </tbody>-->
<!-- </table>-->
<!-- </div>-->
<!-- <div class="back-to-top">-->
<!-- <a href="#header">Back to Top</a>-->
<!-- </div>-->
<!-- </footer>-->
<!--</body>-->
<!--</html>-->
<!--In this updated code, I've introduced two <div> containers for specific purposes:-->
<!--<div class="table-container"> is used to wrap the pricing plan table. This can be helpful if you need to apply custom styles or additional JavaScript functionality to the table.-->
<!--<div class="back-to-top"> is used to wrap the "Back to Top" link. This container can be useful if you want to style or position the link differently from the rest of the footer content.-->
<!--Using <div> elements for these purposes allows for greater flexibility when applying styles and scripts. However, it's still important to use semantic elements wherever possible to maintain a well-structured and accessible web page.-->
<!------------------------>
<h1 class="fancy-header">Welcome to Veridian Dynamics!</h1>
<p>At Veridian Dynamics <strong>we</strong> solve <em>your</em> problems with <strong><em>technology</em></strong></p>
<hr>
<h2>Core Values</h2>
<ul>
<li>Competence</li>
<li>Involvement</li>
<li>Technology</li>
</ul>
<h2>Our Process</h2>
<ol>
<li>Plan</li>
<li>Evaluate</li>
<li>Implement</li>
</ol>
<h2>2020 Vision</h2>
<ul>
<li>Become #1 in Technology</li>
<li>Increase Success by 20%</li>
<li>Increase Business by 30%</li>
</ul>
<hr>
<h2>Company Vision</h2>
<img src="https://images.pexels.com/photos/4424567/pexels-photo-4424567.jpeg?auto=compress&cs=tinysrgb&w=800" height="200">
<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800" height="200">
<br>
<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800"width="200">
<img src="https://images.pexels.com/photos/3618162/pexels-photo-3618162.jpeg?auto=compress&cs=tinysrgb&w=800"width="200">
<h2>Our Product</h2>
<table>
<thead>
<tr>
<th>Plan</th>
<th>Price</th>
<th>Features</th>
</tr>
</thead>
<tr>
<td>Starter</td>
<td>$99</td>
<td>Base Technology</td>
</tr>
<tr>
<td>Advanced</td>
<td>$199</td>
<td>Additional Features</td>
</tr>
<tr>
<td>Premium</td>
<td>$499</td>
<td>Unlimited Support</td>
</tr>
</table>
<p><em>All products come with our quality guarantee™.</em></p>
<p><a href="#">Go to the top of the page</a></p>
</body>
</html>
<!--git add -A or git add . (a period at the end)-->
<!--git commit -m 'your message here'-->
<!--git push origin main-->