Khan Academy Study Guide- Quiz 1
other information
<p> paragraph- adds spaces between paragraph of text. End tags begins with < and ends with >
other information
HTML tags are special bits of code that give structure to a web page. Each tag begins with < ends with>.
Heading Tabs
Heading must have a start and end tag Example: <h1>Mario Bro.</h1> <h1> is used for main (larger) headings <h2> for subheadings <h3> for sub-subheadings heading tags make text bigger and add space above and below it.
HTML
defines the content of pages
Heading Tabs
Notice that the difference between start and end tags is that end tags begin with "</"
Javascript (JS)
is for making the web page interactive
CSS
is styling code for making the web look good
other information
sample web browsers are safari, Chrome, and Internet Explorer
Doctype
the code <!doctype html> is put on the 1st line of your code. it tells the web browser that your code is HTML title tag all web pages also need a title element, which looks like: <title>Page Title</title> this code is put on line 2, after the doctype. the title element text does not appear on the web page, but is used as the title on the web browser tab. be able to correct basic html code.
web
the fast network of connected computers
Heading Tabs
the heading code has 3 parts: a start tag <h1>. the heading text, and an end tag </h1>
other information
your web browser reads HTML and CSS code and displays pretty web pages on your screen