-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathIntroToHtml.jsx
192 lines (183 loc) · 7.94 KB
/
IntroToHtml.jsx
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
import React from "react";
import Navbar from "../../../../Components/Navbar/Navbar";
import Footer from "../../../../Components/Footer/Footer";
import styles from "./IntroToHtml.module.css";
const IntroToHtml = () => {
return (
<>
<Navbar />
<div className={styles.main_container}>
<div className={styles.first_view_container}>
<div className={styles.first_view}>
<div className={styles.fv_texts}>
<p className={styles.fv_heading}>
Introduction to <span>HTML</span>
</p>
<p className={styles.fv_content}>
HTML tags give a webpage its structure. You can use HTML tags to
add photos, buttons, and other elements to your webpage.
<br />
<br />
In this course, you'll learn the most common HTML tags by
building your own cat photo app.
</p>
<p className={styles.fv_content_karma}>
On Completion Earn 200 Karma Points
</p>
</div>
</div>
</div>
<div className={styles.second_view_container}>
<div className={styles.second_view}>
<div className={styles.sv_texts}>
<p className={styles.sv_heading}>How to do the challenge?</p>
</div>
</div>
<div className={styles.steps}>
<div className="timeline-container">
<div className="timeline">
<div className="timeline__event animated fadeInUp delay-3s timeline__event--type1">
<div className="timeline__event__icon">
<img
src={require("../assets/steps/freecodecamp.svg").default}
alt=""
className="lni-cake"
/>
</div>
<div className="timeline__event__date">1</div>
<div className="timeline__event__content">
<div className="timeline__event__title">Step One</div>
<div className="timeline__event__description">
Login to{" "}
<a
href="https://www.freecodecamp.org/"
target="_blank"
rel="noopener noreferrer"
>
freecodecamp.org
</a>
</div>
</div>
</div>
<div className="timeline__event animated fadeInUp delay-2s timeline__event--type2">
<div className="timeline__event__icon">
<img
src={require("../assets/steps/privacy.svg").default}
alt=""
className="lni-cake"
/>
</div>
<div className="timeline__event__date">2</div>
<div className="timeline__event__content">
<div className="timeline__event__title">Step Two</div>
<div className="timeline__event__description">
Click on Menu > Settings. Complete the profile & change
the privacy settings to public. Save the changes
<br />
<a href="#step2">see screenshot ↓</a>
</div>
</div>
</div>
<div className="timeline__event animated fadeInUp delay-1s timeline__event--type3">
<div className="timeline__event__icon">
<img
src={require("../assets/steps/freecodecamp.svg").default}
alt=""
className="lni-cake"
/>
</div>
<div className="timeline__event__date">3</div>
<div className="timeline__event__content">
<div className="timeline__event__title">Step Three</div>
<div className="timeline__event__description">
Navigate to{" "}
<a
rel="noreferrer"
target="_blank"
href="https://www.freecodecamp.org/learn/2022/responsive-web-design/#learn-html-by-building-a-cat-photo-app"
>
Learn HTML by Building a Cat Photo App
</a>
</div>
</div>
</div>
<div className="timeline__event animated fadeInUp timeline__event--type1">
<div className="timeline__event__icon">
<img
src={require("../assets/steps/html-tag.svg").default}
alt=""
className="lni-cake"
/>
</div>
<div className="timeline__event__date">4</div>
<div className="timeline__event__content">
<div className="timeline__event__title">Step Four</div>
<div className="timeline__event__description">
Complete the{" "}
<b>Learn HTML by Building a Cat Photo App</b>
</div>
</div>
</div>
<div className="timeline__event animated fadeInUp delay-3s timeline__event--type1">
<div className="timeline__event__icon">
<img
src={require("../assets/steps/check.svg").default}
alt=""
// className="lni-cake"
/>
</div>
<div className="timeline__event__date">5</div>
<div className="timeline__event__content">
<div className="timeline__event__title">Step Five</div>
<div className="timeline__event__description">
After completing the 69 steps, share your profile URL in{" "}
<b>#task-dropbox</b> channel with hashtag{" "} at the beginning
<b>#ge-intro-to-html</b> to avail karma points. (see
example message below)
<br />
<a href="#step5">see screenshot ↓</a>
</div>
</div>
</div>
</div>
</div>
<div className={styles.screenshots}>
<p id="step2" className={styles.ss_title}>
Step 2 - Screenshot
</p>
<img src={require("./imgs/html-2-ss.png")} alt="" />
<p id="step5" className={styles.ss_title}>
Step 5 - Screenshot
</p>
<img src={require("./imgs/html-5-ss.png")} alt="" />
</div>
<div className={styles.sample_container}>
<p className={styles.sample_header}>Example Message</p>
<p className={styles.sample_message}>
#ge-intro-to-html
Hey! I built a Cat Photo App. <br />
<a
href="https://www.freecodecamp.org/fccf7560df4-0e1a-4d83-b820-e55c2e47a19d"
target="_blank"
rel="noopener noreferrer"
>
https://www.freecodecamp.org/fccf7560df4-0e1a-4d83-b820-e55c2e47a19d{" "}
</a>
<br />
</p>
</div>
<div className={styles.callout}>
Complete the full FreeCodeCamp Responsive Web Design Course and
avail 800 karma points. Checkout{" "}
<a href="https://learn.mulearn.org/web/core/1">
https://learn.mulearn.org/web/core/1
</a>
</div>
</div>
</div>
</div>
<Footer />
</>
);
};
export default IntroToHtml;