Web Development - Basics

1  HTML – Standard for documents designed for .

 CSS – Styling (Adding presentation)

 JavaScript – Scripting language for adding interactivity in web pages

 Frameworks – CSS (Bootstrap) JavaScript frameworks (Angular /React )

2 HTML HTML History

HTML is not case sensitive XHTML is case sensitive

Source: https://slideplayer.com/ - Amber Pratt HTML Basics HTML element— HTML is composed of elements. An element is a unit of content in an HTML document formed by HTML tags and the text or media it contains. Anatomy of an HTML Paragraph Element

HTML Tag — the element name, surrounded by an opening (<) and closing (>) angle bracket.

Opening Tag — the first HTML tag used to start an HTML element. The tag type is surrounded by opening and closing angle brackets.

Content — Everything contained between the opening and closing tags of an Tags in HTML are case-insensitive HTML element.

Closing tag — the second HTML tag used to end an HTML element. Closing tags have a forward slash (/) inside of them, directly after the left angle bracket. These elements structure the webpage and define its content. Structure of a HTML

Instructs the web browser about the version of HTML used

Specifies the language of HTML content character format( Unicode Text Format)

Define website responsiveness Document

Heading

Starting with HTML

1. Open Notepad. 2. Add these lines of HTML code. 3. Save as .html file. 4. Open in web browser. My First Web Page

Content will be inside body

This is another heading

7 Some basic HTML tags



• Special Characters

8 Understanding Directories – Relative Paths

File with the current folder

File within folder in the current folder

two dots (. .) these tell the browser that you want to go back one directory

File in the parent folder of the current folder File in a folder in parent folder of the current folder

9 10 Text Formatting • () • () • () • Subscript() • Superscript() • Pre (

) • Code() • Strong() • Emphasize() • Ins() • del() • 

11 Lists

• Ordered lists • Unordered lists • Description lists

12 Tables

• • • • •
• colspan, rowspan

13 Simple Forms