Skip to content

fronteradevs-utrgv/mm-intro-to-web-dev-2022

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello future Web Developer!!

This is a basic static HTML starter project you can build on however you like. No need to save. While you develop your site using glitch, your changes will happen 🪄 immediately in the preview window. You can upload assets like images or audio in assets to the left. The rest is up to you and your imagination. Look back at this document as much as needed and remember that you are awesome!!

What's in this project?

  • README.md: That's this file, that will guide you through this workshop and beyond.

  • index.html: This is the default home page for your website

  • style.css: CSS files add styling rules to your content.

  • script.js: If you're feeling fancy you can add interactivity to your site with JavaScript.

  • portfolio-example: This folder contains a working, responsive website that you can reverse engineer to your hearts content.

Glitch

You built this with Glitch!

Glitch is a friendly community where millions of people come together to build web apps and websites.

Language Reference

HTML Tags Quick reference

  • HTML tag: It is the root of the html document which is used to specify that the document is html.

    • Syntax:
      • <html> Statements... </html>
    • Code:

      <html> <head> <title>Title of your web page</title> </head> <body>HTML web page contents </body> </html>

  • Head tag: Head tag is used to contain all the head element in the html file. It contains the title, style, meta, … etc tag.

    • Syntax:
      • <head> Statements... </head>
    • Code:

      <head>Contains elements describing the document</head>

  • Body tag: It is used to define the body of html document. It contains image, tables, lists, … etc.

    • Syntax:
      • <body> Statements... </body>
    • Code:

      <body>The content of your HTML page</body>

  • Title tag: It is used to define the title of html document.

    • Syntax:
      • <title> Statements... </title>
    • Code:

      <title>tab name</title>

  • Heading tag: It is used to define the heading of html document.

    • Syntax:
      • <h1> Statements... </h>
      • <h2> Statements... </h2>
      • <h3> Statements... </h3>
      • <h4> Statements... </h4>
      • <h5> Statements... </h5>
      • <h6> Statements... </h6>
    • Code:

      <h1> Heading 1 </h1>
      <h2> Heading 2 </h2>
      <h3> Heading 3 </h3>
      <h4> Heading 4 </h4>
      <h5> Heading 5 </h5>
      <h6> Heading 6 </h6>

  • Paragraph tag: It is used to define paragraph content in html document.

    • Syntax:
      • <p> Statements... </p>
    • Code:

      <p>GeeksforGeeks: Computer science portal</p>

  • Anchor tag: It is used to link one page to another page.

    • Syntax:
      • <a href="..."> Statements... </a>
    • Code:

      <a href="https://www.geeksforgeeks.org/"> GeeksforGeeks</a>

  • List tag: It is used to list the content.

    • Syntax:
      • <li> Statements... </li>
    • Code:

      <li>List item 1</li> <li>List item 2</li>

  • Ordered List tag: It is used to list the content in a particular order.

    • Syntax:
      • <ol> Statements... </ol>
    • Code:

      <ol> <li>List item 1</li> <li>List item 2</li> <li>List item 3</li> <li>List item 4</li> </ol>

  • Unordered List tag: It is used to list the content without order.

    • Syntax:
      • <ul> Statements... </ul>
    • Code:

      <ul> <li>List item 1</li> <li>List item 2</li> <li>List item 3</li> <li>List item 4</li> </ul>

  • Comment tag: It is used to set the comment in html document. It is not visible on the browser.

    • Syntax:
      • <!-- Statements... -->
    • Code:

      <!--Comment section-->

  • Image tag: It is used to add image element in html document.

    • Syntax:
      • <img>
    • Code:

      <img src="gfg.jpg" width="40" height="40" border="0">

  • Link tag: It is used to link the content from external source.

    • Syntax:
      • <link>
    • Code:

      <head> <link rel="stylesheet" type="text/css" href="style.css"> </head>

  • Meta tag: It is used to specify the page description. For example: last modifier, authors, … etc.

    • Syntax:
      • <meta> Statements ... <meta>
    • Code:

      <meta name="Description" content="Description of your site"> <meta name="keywords" content="keywords describing your site">

Powerful Websites

  • Creates great and aesthetically pleasing backgrounds
  • A cheatsheet for jquery
  • For creating good color palettes for your website.
  • For when you want to know if an HTML tag is supported on a certain web browser.
    • This won't be all that relevant for the majority of y'all; however, if you just want to play around with it... here you are.
  • For when you want to be reminded of how far we have come since the good ol' days.
  • If you want to make documentation as good or better than this then follow me

Quick CSS Reference Pictures

The Box Model

  • The Box Model
  • analogy

The Flex Model

  • Flex Model

Grid

  • grid
  • grid
  • grid

CSS Syntax

  • syntax

CSS Size Mnemonic

  • CSS Mnemonic

CSS Specificity ranking

  • rank

Learn More

About

High School M&M Workshop for Intro to Web Development

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published