Class #1

Class #2

Welcome to: Intro to HTML and CSS Class #1

Class Mantra:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/9a7bd88d-2ea2-4d3a-82a0-60fb47e830e8/Session_I_-_2_3_2020_-_Computational_Thinking_Scratch.png

You do not need to memorize all the languages, you use off-the-shelf tools like Google to find out how to code. A great goal for this class will be to be able to teach yourself how to do new things on your own.

TO DO

To run HTML code you will need a Text Editor

For this class, you can use jsfiddle.net or your favorite Text editor.

Make an account on jsfiddle.net

https://jsfiddle.net/

Open The jsfiddle.net/

Sign in to jsfiddle.net/

Example ⬇️

Copy and paste into the file on the jsfiddle.net/

<!DOCTYPE html>

<!-- Demonstrates HTML -->

<html lang="en">
    <head>
        <title>
            My First Web Page
        </title>
    </head>
    <body>
        Hello, world!
    </body>
</html>

Untitled

Save the file in JSfiddle

botempsnip.png

Coding with HTML

HTML provides structure to the content appearing on a website, such as images, text, or videos.