Skip to content

Commit

Permalink
Merge pull request #132 from 4GeeksAcademy/revert-130-codespace-bug-f…
Browse files Browse the repository at this point in the history
…ree-giggle-jvqwx9v54jrhj7gw

Revert "Codespace bug free giggle jvqwx9v54jrhj7gw"
  • Loading branch information
alesanchezr authored Feb 21, 2024
2 parents 77fbb72 + 972cfb4 commit 857ceeb
Show file tree
Hide file tree
Showing 37 changed files with 42 additions and 312 deletions.
2 changes: 0 additions & 2 deletions .learn/resets/01-hello-world/index.html

This file was deleted.

1 change: 0 additions & 1 deletion .learn/resets/01.1-like-word/index.html

This file was deleted.

1 change: 0 additions & 1 deletion .learn/resets/02-website-structure/index.html

This file was deleted.

1 change: 0 additions & 1 deletion .learn/resets/03-hello-without-head/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/04-list-of-reasons/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/05-create-anchors/index.html

This file was deleted.

9 changes: 0 additions & 9 deletions .learn/resets/06-new-window/index.html

This file was deleted.

40 changes: 0 additions & 40 deletions .learn/resets/07-same-page/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/08-relative-vs-absolute-path/index.html

This file was deleted.

17 changes: 0 additions & 17 deletions .learn/resets/09-formatting-Text/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/10-replicate-html/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/11-nested-tags/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/12-my-first-table/index.html

This file was deleted.

21 changes: 0 additions & 21 deletions .learn/resets/13-image-with-text/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/14-video-tag/index.html

This file was deleted.

10 changes: 0 additions & 10 deletions .learn/resets/15-iframe/index.html

This file was deleted.

3 changes: 1 addition & 2 deletions exercises/01-hello-world/index.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<!-- your code below here -->
<span>Hello, I am a text</span>
<strong>Hello, I am also a text but in bold</strong>
<p>Hello! I am a P tag, normally used for paragraphs</p>
2 changes: 1 addition & 1 deletion exercises/01-hello-world/solution.hide.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<!-- your code below here -->
<span>Hello, I am a text</span>
<strong>Hello, I am also a text but in bold</strong>
<strong>Hello, I am also a text but in bold</strong>
1 change: 0 additions & 1 deletion exercises/01.1-like-word/index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<!-- your code below here -->
<p>HTML tags are similar to MS Word elements</p>
2 changes: 1 addition & 1 deletion exercises/01.1-like-word/solution.hide.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<!-- your code below here -->
<p>HTML tags are similar to MS Word elements</p>
<p>HTML tags are similar to MS Word elements</p>
9 changes: 0 additions & 9 deletions exercises/02-website-structure/index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
<!-- your code below here -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello World</title>
</head>
<body></body>
</html>
4 changes: 3 additions & 1 deletion exercises/02-website-structure/solution.hide.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
<head>
<title>Hello World</title>
</head>
<body></body>
<body>

</body>
</html>
6 changes: 0 additions & 6 deletions exercises/03-hello-without-head/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
<!-- your code below here -->
<!DOCTYPE html>
<html lang="en">
<body>
<h1>Lillys Hernandez</h1>
</body>
</html>
8 changes: 4 additions & 4 deletions exercises/03-hello-without-head/solution.hide.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- your code below here -->
<!DOCTYPE html>
<html>
<body>
<h1>My Name</h1>
</body>
</html>
<body>
<h1>My Name</h1>
</body>
</html>
20 changes: 7 additions & 13 deletions exercises/04-list-of-reasons/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>This title shows on the browser tab</title>
</head>
<body>
<ol>
<li>Are In-Demand</li>
<li>Earn a Great Living</li>
<li>Have Diverse Opportunities</li>
<li>Get to be Creative</li>
<li>Have Flexibility</li>
<li>The job outlook is strong</li>
</ol>
</body>
<head>
<title>This title shows on the browser tab</title>
</head>
<body>
<!-- your code here -->

</body>
</html>
2 changes: 1 addition & 1 deletion exercises/05-create-anchors/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
</head>
<body>
<!-- Add your code here -->
<a href="url">"Click me to search on google"</a>

</body>
</html>
2 changes: 1 addition & 1 deletion exercises/06-new-window/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<title>This title shows on the browser tab</title>
</head>
<body>
<a href="https://google.com" target="_blank">Click me to search on google </a>
<a href="https://google.com" >Click me to search on google </a>
</body>
</html>
3 changes: 1 addition & 2 deletions exercises/07-same-page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ <h2 id="upperSide">This is the upper side of the website</h2>
<p>&nbsp;</p>
<p>&nbsp;</p>
<!-- your second anchor here -->
<a href="#upperSide">Go to the lower side!</a>


<h2 id="lowerSide">This is the lower side of the website</h2>
</body>
</html>
15 changes: 1 addition & 14 deletions exercises/09-formatting-Text/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,6 @@
</head>
<body>
<!-- your code here -->
<h1>This will be your heading</h1>
<p>Then you start talking about some interesting stuff that nobody wants to read</p>
<p>Then you can quote some to add credibility</p>
<blockquote>
A quantation is a handy thing to have about , saving one the trouble of thinking
<br />
-A.A. Milne, If I May
</blockquote>
<p>After all, new generations have these things in commun</p>
<ul>
<li>Don't like to read long texts.</li>
<li>Have the attention span of a bird.</li>
<li>Skip long paragraphs straight to the bullet points.</li>
</ul>

</body>
</html>
16 changes: 1 addition & 15 deletions exercises/10-replicate-html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,6 @@
</head>
<body>
<!-- your code here -->
<h1>The learning essay</h1>
<h2>3 signals you know you are learning</h2>
<p>Here are the 3 most common signs that shows you are learning</p>
<ol>
<li>You are able to complete the exercises by yourself.</li>
<li>You understand what the teacher is talking about.</li>
<li>You are able to have conversations about the topic.</li>
</ol>

<h2>3 reasons you love what you are learning</h2>
<ul>
<li>Time passes fast.</li>
<li>You are anxious to finish this exercise and start the next one.</li>
<li>You are anxious to finish this exercise and start the next one.</li>
</ul>

</body>
</html>
5 changes: 1 addition & 4 deletions exercises/11-nested-tags/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
</head>
<body>
<!-- your code here -->
<h1>Hello world.<i>Italic word.</i></h1>
<p>Hello world.<strong>Bold word</strong></p>
<a href=""><h2>Hello</h2></a>
<p>xbxb ghf fjf kfkfg dkdykdft lh saf cfgh fgjf qrqr hhd dfhdhd hd hd hd hjh tuyrtyu rtjh rjr jr jrj r jr</p>

</body>
</html>
31 changes: 14 additions & 17 deletions exercises/11-nested-tags/solution.hide.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>4Geeks Academy</title>
</head>
<body>
<!-- your code here -->
<head>
<title>4Geeks Academy</title>
</head>
<body>
<!-- your code here -->

<!-- This is the first example -->
<!-- This is the first example -->
<h1>Hello world. <i>Italic word.</i></h1>

<!-- This is the second example -->
<p>Hello world. <strong>Bold word.</strong></p>
<!-- This is the second example -->
<p>Hello world. <strong>Bold word.</strong></p>

<!-- This is the third example -->
<a href="#">
<h2>Hello</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis laboriosam quia adipisci. Hic tenetur fuga aliquam velit est
pariatur tempore quibusdam ex quas a ipsum, illo aperiam blanditiis molestias voluptatibus.
</p>
</a>
</body>
<!-- This is the third example -->
<a href="#">
<h2>Hello</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis laboriosam quia adipisci. Hic tenetur fuga aliquam velit est pariatur tempore quibusdam ex quas a ipsum, illo aperiam blanditiis molestias voluptatibus.</p>
</a>
</body>
</html>
Loading

0 comments on commit 857ceeb

Please sign in to comment.