HTML Official Reference
HTML - CSS
HTML Color
CSS Syntax
CSS Border Style
HTML Forms
Three Column Style Content
Box Model
HTML Quick Test:
CSS Box Model
Zip Software Download:
For Windows: https://www.7-zip.org/
For Mac: https://www.izip.com/
Form Design Reference:
Free Web hosting on Github
Welcome to the world of code! HTML is the skeleton of all web pages. It’s often the first language learned by marketers and designers and is the core to front-end development work. If this is your first time touching code, we’re excited for what you’re about to create.
So what exactly is HTML? HTML provides structure to the content appearing on a website, such as images, text, or videos. Right-click on any page on the internet, choose “Inspect,” and you’ll see HTML in a panel of your screen.
HTML stands for Hyper Text Markup Language:
A markup language is a computer language that defines the structure and presentation of raw text.
In HTML, the computer can interpret the raw text that is wrapped in HTML elements.
HyperText is text displayed on a computer or device that provides access to other text through links, also known as hyperlinks. You probably clicked on a couple of hyperlinks on your way to this Codecademy course.
Learning HTML is the first step in creating websites, but even a bit of knowledge can help you inject code snippets into newsletter, blog or website templates. As you continue learning, you can layer HTML with CSS and JavaScript to create visually compelling and dynamic websites. But for now, we’re going to focus on how to add and modify basic content on a page, like text, images, and videos. Don’t worry if the websites look ugly — we’re just getting started.
1. More introduction to HTTP: everything you need to know: https://www.freecodecamp.org/news/http-and-everything-you-need-to-know-about-it/
2. Guide: How to Become a Professional Web Developer: https://discuss.codecademy.com/t/guide-how-to-become-a-web-developer/394722
The basic structure of every web page, HTML, is very plain on its own. The beautiful websites that you see across the internet are styled with a variety of tools, including CSS.
CSS, or Cascading Style Sheets, is a language that web developers use to style the HTML content on a web page. If you’re interested in modifying colors, font types, font sizes, shadows, images, element positioning, and more, CSS is the tool for the job!
In this lesson, you’ll learn how to select which HTML elements you wish to style and set up your CSS file structure.
1. More introduction of CSS and how to use it: https://www.w3schools.com/css/css_intro.asp