Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTML Challenges #30

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
You can learn text tags
iamabubakarsuleiman committed Nov 1, 2024
commit 0fdd1001bd98bf53fed1697eb22b021b1e00594b
64 changes: 34 additions & 30 deletions module_01/01_intro_html/02_challenge.html
Original file line number Diff line number Diff line change
@@ -1,32 +1,36 @@
<!DOCTYPE HTML>
<!DOCTYPE html>
<html>
<head>
<title>Challenge: You can learn text tags</title>
<meta charset="utf-8">
</head>
<body>
<p>
Nobody’s born smart. We all start at 0. Can’t talk, can’t walk, certainly can’t do algebra.<br>
Adding, reading, writing, riding a bike. Nobody’s good at anything at first.<br>
There was a time when Einstein couldn’t count to 10.<br>
And Shakespeare had to learn his ABCs just like the rest of us.<br>
Thankfully, we are born to learn.<br>
Slowly. Surely. You stumble, slip, crawl, fall and fail and fall.<br>
Frustrating. Confusing. Trying. Struggling.<br>
Until one day, you walk.<br>
One foot in front of the other. One idea on top of the next.<br>
Each wrong answer making your brain a little bit stronger.<br>
Failing is just another word for growing. And you keep going.<br>
This. is. learning.<br>
It’s not that you don’t get it. <br>
You just don’t get it, yet.
Because the most beautiful, complex concepts in the whole universe<br>
are built on basic ideas that anyone, anywhere can understand.<br>
Whoever you are, wherever you are.<br>
</p>
<p>
You only have to know one thing:<br>
You can learn anything.
</p>
</body>
<head>
<title>Challenge: You can learn text tags</title>
<meta charset="utf-8" />
</head>
<body>
<p>
<strong>Nobody’s born <em>smart</em></strong
>. We all start at 0. Can’t talk, can’t walk, certainly can’t do
algebra.<br />
Adding, reading, writing, riding a bike. Nobody’s good at anything at
first.<br />
There was a time when <strong>Einstein</strong> couldn’t count to 10.<br />
And <strong>Shakespeare</strong> had to learn his ABCs just like the rest
of us.<br />
Thankfully, we are born to learn.<br />
Slowly. Surely. You stumble, slip, crawl, fall and fail and fall.<br />
Frustrating. Confusing. Trying. Struggling.<br />
Until one day, you walk.<br />
One foot in front of the other. One idea on top of the next.<br />
Each wrong answer making your brain a little bit stronger.<br />
Failing is just another word for growing. And you keep going.<br />
This. is. learning.<br />
It’s not that you don’t get it. <br />
You just don’t get it, yet. Because the most beautiful, complex concepts
in the whole universe<br />
are built on basic ideas that anyone, anywhere can understand.<br />
Whoever you are, wherever you are.<br />
</p>
<p>
You only have to know one thing:<br />
<strong>You can <em>learn</em> anything.</strong>
</p>
</body>
</html>