The Difference Between: HTML Css Javascript
The Difference Between: HTML Css Javascript
Hypertext
Markup
Language
CSS
The Artist
Cascading
Style
Sheets
JavaScript
The Wizard
HTML
Web Content
<h1>Facebook<1h1>
<p>Sign up. It’s free and always will be.</p>
Web Images
<img src=“facebook.com/logo”
alt=“Facebook Logo”>
Web Links
<a href=“facebook.com/login”>Login</a>
CSS
Font Colors Font Types
body { p.normal {
color: blue; font-style: normal;
} }
h1{ p.italic {
color: green; font-style: italic;
} }
p. p.Oblique {
font-style: oblique;
}
JavaScript
JavaScript
3 Things to Remember
HTML + CSS + JavaScript
1
These Code Languages =
FRONT END WEB DEVELOPMENT
BACK END WEB DEVELOPMENT
PHP or MySQL
HTML + CSS + JavaScript
2
These Code Languages =
TRANSLATED BY
Web Browsers
goes code
3
These Code Languages =
EVOLVE OVER TIME
HTM
L
Introduction to HTML
HTML Tags
HTML tags are the hidden keywords within a
web page that define how your browser must
format and display the content.
[exception]
There are some tags that are an exception to
this rule, and where a closing tag is not
required. The <img> tag for showing images
is one example of this.
<img>
HTML Files
Every web page is actually a
HTML file. Each HTML file is
just a plain-text file, but with a
.html file extension instead of
.txt, and is made up of many
HTML tags as well as the
content for a web page.
A web site will often contain
many html files that link to
each other. You can edit HTML
files with your favorite editor.
Basic HTML document
<html>
<head>
<title>My Page Title</title>
</head>
<body>
</body>
</html>