Skip to content

started lesson 1 #1

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

Merged
merged 1 commit into from
Jan 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions projectfolder/02-HTML-Fundamentals/content.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
📘 The Code Magazine

The Basic Language of the Web: HTML

Posted by Laura Jones on Monday, June 21st 2027

All modern websites and web applications are built using three fundamental technologies: HTML, CSS and JavaScript. These are the languages of the web.

In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.

What is HTML?

HTML stands for HyperText Markup Language. It's a markup language that web developers use to structure and describe the content of a webpage (not a programming language).

HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video, etc. Web browsers understand HTML and render HTML code as websites.

In HTML, each element is made up of 3 parts:

The opening tag
The closing tag
The actual element
You can learn more at the MDN Web Docs.

Why should you learn HTML?

There are countless reasons for learning the fundamental language of the web. Here are 5 of them:

To be able to use the fundamental web dev language
To hand-craft beautiful websites instead of relying on tools like Worpress or Wix
To build web applications
To impress friends
To have fun 😃

Hopefully you learned something new here. See you next time!
46 changes: 46 additions & 0 deletions projectfolder/02-HTML-Fundamentals/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<!DOCTYPE html>
<html>
<head>
<title>The Basic Langauge of The Web: HTML</title>
</head>
<body>
<!-- Comment Block, this his how you do comments in html-->
<h1>📘 The Code Magazine</h1>
<h2>The Basic Langauge of The Web: HTML</h2>
<p>Posted by <strong>Laura Jones </strong> on Monday, June 21st 2027</p>
<p>
All modern websites and web applications are built using three <em>fundamental</em> technologies: HTML, CSS and
JavaScript. These are the languages of the web.
</p>
<p>In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.</p>
<h3>What is HTML?</h3>
<p>
<strong>HTML </strong> stands for <strong>H</strong>yper<strong>T</strong>ext <strong>M</strong>arkup
<strong>L</strong>anguage. It's a markup language that web developers use to structure and describe the content of
a webpage (not a programming language).
</p>
<p>
HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video,
etc. Web browsers understand HTML and render HTML code as websites.
</p>
<p>In HTML, each element is made up of 3 parts:</p>
<ol>
<li>The opening tag</li>
<li>The closing tag</li>
<li>The actual element</li>
<li>You can learn more at the MDN Web Docs.</li>
</ol>

<h3>Why should you learn HTML</h3>

<p>There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</p>

<ul>
<li>To be able to use the fundamental web dev language</li>
<li>To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</li>
<li>To build web applications</li>
<li>To impress friends To have fun 😃</li>
</ul>
<p>Hopefully you learned something new here. See you next time!</p>
</body>
</html>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projectfolder/02-HTML-Fundamentals/post-img.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projectfolder/02-HTML-Fundamentals/related-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added projectfolder/02-HTML-Fundamentals/related-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions starter/01-Test/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My millions attempt at a webpage</title>
</head>
<body>
<h1>Hello, world!</h1>
<p>My name is Michael, and this is an attempt at a webpage and shit like that :D</p>
</body>
</html>