140 likes | 345 Views
Coding & HTML. Communications Technology III Mr. Bundy. Objectives. What is Coding? What is HTML? How do I write code? Why is it necessary? HTML Syntax. What is Coding?. Code: http://code.org / Programming instructions for a computer.
E N D
Coding & HTML Communications Technology III Mr. Bundy
Objectives • What is Coding? • What is HTML? • How do I write code? • Why is it necessary? • HTML Syntax
What is Coding? • Code: http://code.org/Programming instructions for a computer. • There are several different languages of code, just like there are many different languages of speech and writing. • Coding is also used in video games, any website you see, and complex programs for any profession you can think of.
What is HTML? • HTML: Hyper-text Markup Language-The basic language for websites and webpages on the internet. • Created by Tim Berners-Lee and several others in 1989-1991. • Originally designed to share and edit science documents worldwide. Andreas Rentz/Getty Images http://inventors.about.com/od/computersoftware/a/html.htm http://www.htmlgoodies.com/tutorials/html_401/html4-ref/article.php/3460261
How do I write Code? • Syntax: A set of rules to describe a written language • Notepad: A basic text format, or script, that the computer can run as a program. • Notepad++: Notepad that a human being can actually use to write code.
Why is it necessary? • Codes are the building blocks of all technology • Difference between the driver and the passenger • Potential for employment
Coding & HTML Communications Technology III Mr. Bundy
HTML Syntax • HTML code is written in brackets <> and called “tags”. • If you <open> a tag, it must be </closed>. • These four tags are always included in a HTML document: • <html></html> • <head></head> • <title></title> • <body></body>
HTML Syntax • All content is written in between tags. <body>All of your words go here</body> • Nesting:Tags must be closed in the reverse order of when they were opened. Tabs help with organization.<html><body> Content</body></html>
HTML Syntax • Any code modifiers must be written in quotes. <font size=“12” color=“white” face=“Arial”> • Any missed quotes or tag arrows will result in the computer recording a “syntax error” and your code will not appear correct.
Helpful Websites • www.htmlgoodies.com • www.html-color-codes.com/ • www.w3schools.com/ • www.codeacademy.com • www.htmlcodetutorial.com