Presented By: Lalit Kumar Full Stack Development HTML + CSS + JavaScript
Unit-1 HTML(Hyper Text Markup Language) Introduction to HTML Browsers and HTML Tags, Attribute and Elements Doc type Element, Comments Headings, Paragraphs, and Formatting Text Lists and Links Images and Tables CSS (Cascading Style Sheet) Introduction CSS , Type of CSS Applying CSS to HTML Selectors, Properties and Values CSS Colours and Backgrounds CSS Box Model
Unit-1 CSS CSS Margins, Padding, and Borders CSS Text and Font Properties CSS General Topics
Unit-2 Introduction to JavaScript Applying JavaScript (internal and external) Understanding JS Syntax Introduction to Document and Window Object Variables and Operators Data Types and Num Type Conversion JavaScript Math and String Manipulation Objects and Arrays Date and Time Conditional Statements, Switch Case Looping in JS Functions
HTML is an acronym which stands for Hyper Text Markup Language which is used for creating web pages and web applications. HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. HTML
HTML Headings HTML headings are defined with the <h1> to <h6> tags . <h1> defines the most important heading. <h6> defines the least important heading. Heading 1 - H1 Heading 2 - H2 Heading 3 - H3 Heading 4 - H4 Heading 5 - H5 Heading 6 - H6
HTML Tables A table in HTML consists of table cells inside rows and columns Each table row starts with a < tr > and end with a </ tr > tag Each table cell is defined by a <td> and a </td> tag.
< table > < tr > < th > Company < / th > < th > Contact < / th > < th > Country < / th > < / tr > < tr > < td > Alfreds Futterkiste < /td > < td > Maria Anders < /td > < td > Germany < /td > < / tr > < tr > < td > Centro comercial Moctezuma < /td > < td > Francisco Chang < /td > < td > Mexico < /td > < / tr > < /table > Company Contact Country Alfreds Futterkiste Maria Anders Germany Centro comercial Moctezuma Francisco Chang Mexico