HTML is a markup language used to define the structure and layout of web pages. HTML uses tags to mark elements like headings, paragraphs, links, images, and more. When an HTML file is opened in a web browser, the browser displays the page using the tags to interpret the page's content and structure. Common HTML elements include headings, paragraphs, links, images, lists, tables, forms, and iframes. CSS can also be used to further define styles and visual presentation of HTML elements.
Learn HTML and CSS in few steps . Practice an hour daily for good results in 10 days.
Here I am mentioning basic elements , attributes and tags of HTML with styling them
The document provides an introduction to HTML (Hypertext Markup Language) by explaining some key concepts:
HTML is used to create web pages and is made up of markup tags rather than a programming language. It describes the structure of a web page using elements like headings, paragraphs, links, images, lists and tables. The document then demonstrates and explains the use of various HTML tags through examples of code and the resulting web page output.
The document provides an overview of the course "GEE-IE Living in the IT Era" which aims to teach students about the history of computers and information technology. It outlines 12 topics that will be covered, including the pre-mechanical, mechanical, electro-mechanical, electronic, and various generations of computers. For each topic, learning outcomes, teaching methods, assessment methods, materials, and timeframe are defined. The course aims to explain the discoveries and inventions that have occurred throughout the development of computers and the internet to help students understand living in the current IT era.
This document provides an introduction to HTML (Hypertext Markup Language) and describes some basic HTML tags and elements. It discusses how to structure an HTML document using tags like <html>, <head>, <title>, and <body>. It also covers text formatting tags, headings, paragraphs, hyperlinks, images, and more. The document contains examples of HTML code and the rendered output to demonstrate how various tags are used.
It describe the whole detail of html, CSS , html5 for descibing how to use html tags and where we use html tags. It describe the whole detail of html and CSS.
Technology plays an important role in education in several ways:
1) It is integrated into curriculum, used as an instructional tool, aids instruction, and enhances the learning process.
2) It allows teachers and students to access a vast expanse of learning materials and collaborate globally.
3) When used properly, technology can help students learn faster and retain concepts better through interactive lessons and access to more information.
Understanding and Supporting Web AccessibilityRachel Cherry
Web accessibility refers to the inclusive practice of removing barriers that prevent interaction with, or access to, websites by people with disabilities. When your website is accessible, all users can access your content and functionality no matter their abilities. Visually-impaired users can visit your website using a screen reader. Those who can’t use a mouse can navigate your site using a keyboard or other input device. Most accessibility features will also improve your SEO.
When your site is inaccessible, research shows you could be excluding up to 20 percent of your users.
This talk will cover the basics of accessibility, why it’s important, and how you can support accessibility in your projects.
HTML is a markup language used to define the structure and layout of web pages. HTML documents contain HTML elements that define different parts of the page like headings, paragraphs, lists, links, and more. Key HTML elements include <html> <head> <body> <h1>-<h6> for headings, <p> for paragraphs, <ul> and <ol> for unordered and ordered lists, <a> for links, <img> for images, <table> for tables, and <form> for forms. HTML documents are text files that use tags enclosed in < > to define elements and attributes provide additional information about elements.
The document provides an introduction to HTML, covering topics such as what HTML is, how web pages work, common programs used to write HTML, how browsers display web pages, basic HTML tags, formatting of HTML documents, and more. Key points include:
- HTML is the standard markup language used to create web pages
- Web pages are stored on servers and viewed in browsers using HTTP
- Popular programs for writing HTML include Notepad, Textpad, Dreamweaver
- Browsers fetch and display pages using HTML tags to control formatting
- Basic HTML tags include headings, paragraphs, line breaks, comments
- Links, images, backgrounds, and other elements are added using tags
Hypertext Markup Language (HTML) is a markup language that is used to structure and present content on the World Wide Web. It was created by Tim Berners-Lee in 1980. The document defines various HTML tags such as headings, paragraphs, bold, italics, lists, images, and links. It provides examples of how to use each tag, including the opening and closing syntax. Common tags discussed include <h1> for main headings, <p> for paragraphs, <b> for bold text, <i> for italics, <ol> for ordered lists, <ul> for unordered lists, and <a> for creating links between pages.
This document provides an overview of HTML, CSS, and JavaScript for web development. It discusses the basics of each technology, how they work together, and includes the following key points:
- HTML is the markup language that defines the structure and content of a web page. CSS is used to style and lay out elements on the page. JavaScript adds interactive functionality.
- Events, functions, and variables are important JavaScript concepts. Events trigger actions, functions contain reusable code, and variables store and retrieve data.
- CSS selectors allow styling elements by type, class, ID, and other attributes. The box model, positioning, and other properties control layout.
- Common debugging tools like Firebug help
The document provides an agenda for a workshop on HTML, CSS, and putting them together. It covers HTML topics like semantic tags, comments, and best practices. It then discusses CSS topics such as IDs vs classes, floats, shorthand, and putting HTML and CSS together with project structure and layouts. The workshop aims to give an introduction to HTML, CSS, and how to structure websites using these languages.
HTML Basics document provides an overview of HTML elements and tags used to format text and structure web pages. It discusses the basic structure of an HTML document including the <head>, <title>, and <body> sections. Common text formatting tags like <p>, <h1>-<h6>, <strong>, <em>, and <br> are demonstrated. Other elements covered include images, lists, links, and basic styling with inline CSS. The document serves as an introduction to basic HTML syntax and structure.
The document provides information about HTML (Hypertext Markup Language):
1. HTML is the standard markup language used to create web pages and defines the structure and layout of a web page.
2. HTML uses tags to annotate text with semantic information like headings, paragraphs, links, quotes, etc. and the tags are enclosed in angle brackets.
3. Basic HTML tags include <html>, <head>, <title>, <body>, <h1>-<h6> for headings, <p> for paragraphs, <a> for links, <img> for images, and <br> for line breaks.
HTML is a markup language used to define the structure and layout of web pages. HTML uses tags to annotate text, images, and other content for display in a web browser. Some key HTML tags include <h1> for main headings, <p> for paragraphs, <a> for links, <img> for images, <ul> and <ol> for unordered and ordered lists. CSS can be used to style and lay out HTML elements.
The document provides an introduction to HTML (Hypertext Markup Language), covering basic HTML tags and elements used to structure and format text on web pages. It explains that HTML is not a programming language but a markup language used to define the structure of a web page. The document lists common HTML tags for headings, paragraphs, line breaks, comments, and other text elements, and provides examples of how each tag is structured and displayed in a web browser. It also covers attributes that provide additional styling information for elements.
HTML is a markup language used to describe and structure web pages. It uses tags to define headings, paragraphs, links, images, and other content. An HTML file contains a head and body section. The head contains meta information about the page like the title. The body contains the visible page content. Common tags include headings, paragraphs, links, images, and divs to group content. Attributes provide extra information about elements.
HTML is the language used to structure and present content on the World Wide Web. It uses tags to define headings, paragraphs, lists, and other elements. A basic HTML file includes an <html> tag which contains <head> and <body> sections. The <head> includes the <title> and the <body> holds the visible page content. Common tags include <p> for paragraphs, <ul> and <ol> for unordered and ordered lists, and <img> to embed images.
1. The document discusses basic HTML elements and tags used to structure an HTML document, including <html>, <head>, <title>, <body>, headings, paragraphs, line breaks, and horizontal rules.
2. Key HTML tags are explained along with their purpose and attributes. Container elements require opening and closing tags while empty elements only require a starting tag.
3. Examples are provided to demonstrate how to use various HTML tags to display text, headings, and lines in different formats and alignments. The <body> tag attributes to set background color, text color, and margins are also covered.
HTML is a markup language used to create web pages. It uses tags like <html>, <title>, and <body> that are placed within angled brackets to denote elements on a page. Tags can be container tags, which have an opening and closing tag to surround content, or empty tags which are standalone with no closing tag. When creating an HTML file, it should be saved with a .html or .htm extension and then can be viewed by opening it in a web browser.
HTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
The document discusses various HTML tags and concepts including:
- Basic HTML tags like <html>, <head>, <title>, <body>
- Formatting tags like <b>, <i>, <u> for bold, italic, underline
- Paragraph tags <p> and line break <br>
- Headings tags <h1> to <h6>
- Attributes for the <body> and <font> tags to control text and background colors
- Hyperlinks using the <a> tag and relative vs absolute links
- The <marquee> tag for animated scrolling text
Following are the some notes regarding HTML.It will provide you a basic insight in HTML and web designing.
For further, contact us -http://nextgenr.com/
HTML (Hypertext Markup Language) is used to create web pages. It uses tags to define headings, paragraphs, lists, links and other elements. Some key HTML tags are <html> <head> <title> <body> <h1>-<h6> <p> <ul> <ol> <li> <a> <img>. HTML pages can be written using a basic text editor and have the .html file extension. The browser interprets the HTML tags to display the structured page content.
HTML is the standard markup language used to create web pages. HTML uses tags to label content such as headings, paragraphs, lists, and tables. Tags are keywords surrounded by angle brackets and most have an opening and closing tag. Common HTML tags are used to create headings, paragraphs, lists, line breaks, horizontal rules, bold, underline, italic and strong text. The basic HTML page structure includes <html>, <head>, <body> tags.
This document provides an overview of HTML and CSS topics including:
- A brief history of HTML and CSS standards from 1990 to present.
- Descriptions of common HTML elements like <body>, <head>, <img>, <a>, and lists.
- Explanations of CSS concepts like selectors, properties, units, positioning, and layout fundamentals.
- Details on CSS topics like the box model, centering content, semantic HTML, and flexbox.
The document serves as a course outline or reference for learning HTML and CSS fundamentals.
The document discusses HTML headings, paragraphs, formatting, links, and the <head> element. It provides examples and descriptions of HTML tags for headings (<h1>-<h6>), paragraphs (<p>), line breaks (<br>), text formatting (<b>, <i>, etc.), links (<a>), and elements in the <head> including <title>. It emphasizes the importance of headings, proper formatting, and links in HTML documents.
HTML is a markup language used to define the structure and layout of web pages. HTML documents contain HTML elements that define different parts of the page like headings, paragraphs, lists, links, and more. Key HTML elements include <html> <head> <body> <h1>-<h6> for headings, <p> for paragraphs, <ul> and <ol> for unordered and ordered lists, <a> for links, <img> for images, <table> for tables, and <form> for forms. HTML documents are text files that use tags enclosed in < > to define elements and attributes provide additional information about elements.
The document provides an introduction to HTML, covering topics such as what HTML is, how web pages work, common programs used to write HTML, how browsers display web pages, basic HTML tags, formatting of HTML documents, and more. Key points include:
- HTML is the standard markup language used to create web pages
- Web pages are stored on servers and viewed in browsers using HTTP
- Popular programs for writing HTML include Notepad, Textpad, Dreamweaver
- Browsers fetch and display pages using HTML tags to control formatting
- Basic HTML tags include headings, paragraphs, line breaks, comments
- Links, images, backgrounds, and other elements are added using tags
Hypertext Markup Language (HTML) is a markup language that is used to structure and present content on the World Wide Web. It was created by Tim Berners-Lee in 1980. The document defines various HTML tags such as headings, paragraphs, bold, italics, lists, images, and links. It provides examples of how to use each tag, including the opening and closing syntax. Common tags discussed include <h1> for main headings, <p> for paragraphs, <b> for bold text, <i> for italics, <ol> for ordered lists, <ul> for unordered lists, and <a> for creating links between pages.
This document provides an overview of HTML, CSS, and JavaScript for web development. It discusses the basics of each technology, how they work together, and includes the following key points:
- HTML is the markup language that defines the structure and content of a web page. CSS is used to style and lay out elements on the page. JavaScript adds interactive functionality.
- Events, functions, and variables are important JavaScript concepts. Events trigger actions, functions contain reusable code, and variables store and retrieve data.
- CSS selectors allow styling elements by type, class, ID, and other attributes. The box model, positioning, and other properties control layout.
- Common debugging tools like Firebug help
The document provides an agenda for a workshop on HTML, CSS, and putting them together. It covers HTML topics like semantic tags, comments, and best practices. It then discusses CSS topics such as IDs vs classes, floats, shorthand, and putting HTML and CSS together with project structure and layouts. The workshop aims to give an introduction to HTML, CSS, and how to structure websites using these languages.
HTML Basics document provides an overview of HTML elements and tags used to format text and structure web pages. It discusses the basic structure of an HTML document including the <head>, <title>, and <body> sections. Common text formatting tags like <p>, <h1>-<h6>, <strong>, <em>, and <br> are demonstrated. Other elements covered include images, lists, links, and basic styling with inline CSS. The document serves as an introduction to basic HTML syntax and structure.
The document provides information about HTML (Hypertext Markup Language):
1. HTML is the standard markup language used to create web pages and defines the structure and layout of a web page.
2. HTML uses tags to annotate text with semantic information like headings, paragraphs, links, quotes, etc. and the tags are enclosed in angle brackets.
3. Basic HTML tags include <html>, <head>, <title>, <body>, <h1>-<h6> for headings, <p> for paragraphs, <a> for links, <img> for images, and <br> for line breaks.
HTML is a markup language used to define the structure and layout of web pages. HTML uses tags to annotate text, images, and other content for display in a web browser. Some key HTML tags include <h1> for main headings, <p> for paragraphs, <a> for links, <img> for images, <ul> and <ol> for unordered and ordered lists. CSS can be used to style and lay out HTML elements.
The document provides an introduction to HTML (Hypertext Markup Language), covering basic HTML tags and elements used to structure and format text on web pages. It explains that HTML is not a programming language but a markup language used to define the structure of a web page. The document lists common HTML tags for headings, paragraphs, line breaks, comments, and other text elements, and provides examples of how each tag is structured and displayed in a web browser. It also covers attributes that provide additional styling information for elements.
HTML is a markup language used to describe and structure web pages. It uses tags to define headings, paragraphs, links, images, and other content. An HTML file contains a head and body section. The head contains meta information about the page like the title. The body contains the visible page content. Common tags include headings, paragraphs, links, images, and divs to group content. Attributes provide extra information about elements.
HTML is the language used to structure and present content on the World Wide Web. It uses tags to define headings, paragraphs, lists, and other elements. A basic HTML file includes an <html> tag which contains <head> and <body> sections. The <head> includes the <title> and the <body> holds the visible page content. Common tags include <p> for paragraphs, <ul> and <ol> for unordered and ordered lists, and <img> to embed images.
1. The document discusses basic HTML elements and tags used to structure an HTML document, including <html>, <head>, <title>, <body>, headings, paragraphs, line breaks, and horizontal rules.
2. Key HTML tags are explained along with their purpose and attributes. Container elements require opening and closing tags while empty elements only require a starting tag.
3. Examples are provided to demonstrate how to use various HTML tags to display text, headings, and lines in different formats and alignments. The <body> tag attributes to set background color, text color, and margins are also covered.
HTML is a markup language used to create web pages. It uses tags like <html>, <title>, and <body> that are placed within angled brackets to denote elements on a page. Tags can be container tags, which have an opening and closing tag to surround content, or empty tags which are standalone with no closing tag. When creating an HTML file, it should be saved with a .html or .htm extension and then can be viewed by opening it in a web browser.
HTML allows images and tables to be inserted into web pages. Images are added using the <IMG> tag which specifies attributes like the image source URL, height, width, and alternative text. Tables organize data into rows and columns and use <TABLE>, <TR>, <TH>, and <TD> tags. Attributes control table properties such as borders, cell padding, alignment, column spans, and row spans. Captions can be added above or below tables using <CAPTION> tags.
The document discusses various HTML tags and concepts including:
- Basic HTML tags like <html>, <head>, <title>, <body>
- Formatting tags like <b>, <i>, <u> for bold, italic, underline
- Paragraph tags <p> and line break <br>
- Headings tags <h1> to <h6>
- Attributes for the <body> and <font> tags to control text and background colors
- Hyperlinks using the <a> tag and relative vs absolute links
- The <marquee> tag for animated scrolling text
Following are the some notes regarding HTML.It will provide you a basic insight in HTML and web designing.
For further, contact us -http://nextgenr.com/
HTML (Hypertext Markup Language) is used to create web pages. It uses tags to define headings, paragraphs, lists, links and other elements. Some key HTML tags are <html> <head> <title> <body> <h1>-<h6> <p> <ul> <ol> <li> <a> <img>. HTML pages can be written using a basic text editor and have the .html file extension. The browser interprets the HTML tags to display the structured page content.
HTML is the standard markup language used to create web pages. HTML uses tags to label content such as headings, paragraphs, lists, and tables. Tags are keywords surrounded by angle brackets and most have an opening and closing tag. Common HTML tags are used to create headings, paragraphs, lists, line breaks, horizontal rules, bold, underline, italic and strong text. The basic HTML page structure includes <html>, <head>, <body> tags.
This document provides an overview of HTML and CSS topics including:
- A brief history of HTML and CSS standards from 1990 to present.
- Descriptions of common HTML elements like <body>, <head>, <img>, <a>, and lists.
- Explanations of CSS concepts like selectors, properties, units, positioning, and layout fundamentals.
- Details on CSS topics like the box model, centering content, semantic HTML, and flexbox.
The document serves as a course outline or reference for learning HTML and CSS fundamentals.
The document discusses HTML headings, paragraphs, formatting, links, and the <head> element. It provides examples and descriptions of HTML tags for headings (<h1>-<h6>), paragraphs (<p>), line breaks (<br>), text formatting (<b>, <i>, etc.), links (<a>), and elements in the <head> including <title>. It emphasizes the importance of headings, proper formatting, and links in HTML documents.
This document provides an introduction to basic HTML syntax and common tags. It explains opening and closing tags, and shows examples of common tags like paragraphs, headings, links, images, lists, bold, italics, and div boxes. It also introduces Markdown as a simplified way to write HTML. The document encourages learning more at Ted Curran.net or W3Schools.com.
Introduction to basic HTML [Librarian edition]Kosie Eloff
HTML is the main markup language used to create web pages and display information in web browsers. It uses tags (<tag>text</tag>) to structure documents and describe their nature. Key points about HTML include:
- It stands for Hypertext Markup Language and is used to structure documents with hyperlinks to other texts.
- HTML pages are written as plain text files that use tags to describe text formatting and structure. The files end with .html.
- Web browsers are used to open and display HTML files, interpreting the tags and displaying the structured content.
Markup provides information about document structure and presentation. It includes start and closing tags like <p> and </p>. HTML is a markup language used to build web pages and includes elements like <head> and <body>. It has a defined structure with tags nested properly. HTML documents are text files with a .html extension.
This document provides instructions on creating extra space between words and using special characters in HTML. It explains that the tag creates extra space, lists special characters like <, >, &, and " and their corresponding codes, and instructs the reader to copy sample code and test it in a browser by taking a screenshot for an assignment.
HTML uses tags marked by < and > to provide structure and formatting to web pages. The basic structure of an HTML page includes <html>, <head>, and <body> tags, with the <head> containing the <title> and the <body> displaying content. Common tags include those for headings, titles, comments, and different levels of headings from <h1> to <h6>.
This document provides an overview of creating and submitting forms in ProdigyView. It discusses the required understanding of HTML form elements and PVHtml. It then demonstrates creating a basic form using various form elements like text inputs, textareas, buttons, selects, radios, checkboxes and more. It also discusses options that can be passed to form elements to define attributes. The document encourages reviewing the PVForms API reference and checking additional tutorials for more details.
Links are a core part of HTML that allow webpages to connect to other resources on the internet or within the same page. The document instructs the reader to create a new folder called HTML_Lesson12, make an HTML file within it called HTML_Lesson12.html, then add some basic anchor tags with href attributes to that file to create hyperlinks and take a screenshot of the code for an assignment.
This document provides instructions for a basic HTML tutorial assignment. It instructs students to set up a file structure with an htmlLesson10 folder, add an images subfolder, and download a chef image file. It then tells students to create an HTML file with code that displays text, the chef image below it, their name below the image, and another image of their choice, and provides instructions to test the code in a browser and upload a screenshot.
This document provides an introduction to HTML and building basic websites. It explains that HTML stands for "hypertext markup language" and is used to build websites. The document then gives an example of a simple HTML file structure and tags like <html>, <head>, <title>, <body>, <h1>, <p>, etc. It demonstrates how to write the code for a basic "Hello World" website and includes an explanation of each part of the code. The document concludes by listing some common HTML tags that can be used to format text and insert images and links.
Hypertext Markup Language (HTML) is a markup language used to create web pages and viewable content in web browsers. It uses tags to denote elements in a web page like headings, paragraphs, and other text formatting. To create an HTML file, the file is saved with a .html or .htm extension. Elements can then be added between tags like <h1> for main headings and <p> for paragraphs. Attributes can also be added to tags to further style elements, such as adding a background image or color.
The document discusses several key HTML elements for structuring and presenting content on web pages, including basic page structure tags, text formatting tags, image tags, list tags, table tags, and frame tags. It provides examples of common tags for each element and their purpose in organizing and displaying information.
The document provides information about designing and developing websites and web applications. It discusses topics like HTML tags for text formatting, lists, tables, images, forms, and multimedia. It also covers CSS for styling websites and the differences between HTML4 and HTML5. The speaker is Md. Zakir Hossain, a software engineer who will teach participants how to design professional websites, develop web-based software, and publish online content in a series of classes.
This document provides an introduction to HTML (Hypertext Markup Language) and describes the basic structure and tags used in an HTML document. It explains that HTML documents use markup tags to define headings, paragraphs, lists and other elements. The key tags are <html> to define an HTML document, <head> for page header info like the <title>, and <body> for the visible page content. It provides examples of basic HTML documents and describes common tags like <p> for paragraphs and <h1> for headings.
- HTML (Hypertext Markup Language) is the code that defines the structure and layout of a web page.
- HTML uses tags to annotate text, images, and other content for display in a web browser. Common tags include <body>, <h1> for headings, and <p> for paragraphs.
- To create an HTML page, you open a plain text editor and save the file with a .html extension. Then you can use tags to structure the page content and view it in a web browser.
The document discusses HTML (Hypertext Markup Language), which defines the structure and layout of web pages using tags and attributes. It describes common HTML elements like <head>, <title>, <body>, and <html> that form the basic structure of an HTML document, as well as tags for text formatting, hyperlinks, images, lists, and tables. Paired and singular tags are introduced along with examples.
EBRE TABOR UNIVERSITY Gafat Institute of Technology Department of Information...shambelworku8
EBRE TABOR UNIVERSITY
Gafat Institute of Technology
Department of Information Technology
ASSIGNMENT OF GEOGRAPGY INFORMATION
SYSTEM&REMOTSEMSING
GROUP 4 M
HTML is a markup language used to define the structure and layout of web pages. Key points:
- HTML uses tags like <h1> and <p> to describe headings and paragraphs in a web page.
- The <html> tag defines an HTML document, <body> contains visible page content.
- Links are defined with <a> tags, images with <img> tags.
- HTML documents are displayed in web browsers, which interpret the tags but hide them from view.
- HTML is a simple language for structuring information, not for page layout or formatting.
HTML is a markup language used to define the structure and layout of web pages. Key points:
- HTML uses tags like <h1> and <p> to describe headings and paragraphs in a web page.
- The <html> tag defines an HTML document, <body> contains visible page content.
- Links are defined with <a> tags, images with <img> tags.
- HTML documents are displayed in web browsers, which interpret the tags but hide them from view.
- HTML is a simple language for structuring information, not a programming language.
- HTML is a markup language used to define the structure and layout of web pages. It uses tags like <h1> and <p> to mark text as headings or paragraphs.
- CSS is used to style HTML elements and control things like colors, fonts, and layout. CSS rules can be applied internally using the style attribute or externally in a .css file.
- HTML links are defined using the <a> tag and href attribute. The href specifies the URL of the linked document. Links allow users to navigate between web pages.
- HTML is a markup language used to define the structure and layout of web pages. It uses tags like <h1> and <p> to mark text as headings or paragraphs.
- CSS is used to style HTML elements and control things like colors, fonts, and layout. CSS rules can be applied internally using the style attribute or externally in separate CSS files.
- HTML links are defined using the <a> tag and the href attribute. The target attribute controls whether links open in the same or new window. Bookmarks are created using the name or id attribute.
The document provides an introduction to HTML and explains various HTML tags and elements. It discusses HTML tags for headings, paragraphs, links, images, attributes, horizontal rules, line breaks, preformatted text, and styles. It also covers HTML formatting elements for bold, italics, emphasis, small text, marks, deletions, subscripts, and superscripts. Finally, it demonstrates how to create multi-column layouts using <div> tags or HTML5 semantic elements like <header>, <nav>, <section>, and <footer>.
HTML is a markup language used to define the structure and layout of web pages. Key HTML elements include headings, paragraphs, links, and images. HTML documents are made up of nested elements that each have an opening and closing tag. Attributes provide additional information about elements and come in name/value pairs. Common attributes specify hyperlinks, images, styles, and more. Well-structured HTML is important for both appearance and search engine optimization.
The document provides an introduction to HTML (Hypertext Markup Language) including:
- HTML is a markup language used to define the structure and layout of web pages.
- HTML uses tags to annotate text with semantic meaning like headings, paragraphs, links, and images.
- The browser displays the HTML tags but does not show them, using them to interpret and display the content.
The document provides instructions for creating basic HTML links. It explains that the <a> tag is used to define a hyperlink, with the href attribute specifying the link destination. Examples are given of creating links to other websites and bookmarks within the same page. Targets for opening links in new windows are also demonstrated.
Seo is referred as Search Engine Optimization. It has basically four modules Search engine optimization (SEO), Social Media Optimization (SMO), Search Engine Marketing (SEM) and PPC.
We at SKY INFOTECH have a team of professionals dedicated towards SEO and we are also proving LIVE PROJECT TRAINING in SEO and PPC.
This PDF is all about Basic HTML meta tags which are mostly used in SEO on-page practices. These slides will really help students who really want to know about SEO. We provide SEO training in Noida at affordable price. For more information, visit the website.
In this presentation, you will learn about few things:
1)What is HTML?
2)Elements
3)Tags
4)Attributes
5)Headings
6)Paragraphs
and in the end there is small example of HTML page. In the next presentation you will get to know about styling the HTML page and more.
This document provides an introduction to HTML. It defines HTML as the standard markup language used to structure web pages. It describes some basic HTML elements like <html>, <head>, <body>, <h1>-<h6> headings, <p> paragraphs, and <img> images. It provides examples of how to use these elements and attributes like align. The document also covers adding images, lines, breaks, and basic text formatting in HTML. It concludes with some references for further reading.
WEBSITE DEVELOPMENT,HTML is the standard markup language for creating Web pag...johnmngoya1
What is HTML?
HTML is the standard markup language for creating Web pages.
HTML stands for Hyper Text Markup Language.
HTML describes the structure of Web pages using markup.
HTML elements are the building blocks of HTML pages.
HTML elements are represented by tags.
HTML tags label pieces of content such as "heading", "paragraph",
"table", and so on.
Browsers do not display the HTML tags, but use them to render
the content of the page.
HTML (Hypertext Markup Language) is the standard markup language used to create web pages. It uses tags to define headings, paragraphs, lists and other elements. Originally developed to share scientific information, HTML is now widely used to format web pages using tags like <html>, <head>, <body>, <h1>, <p>, <br>, and <img>. HTML documents have a basic structure including a <DOCTYPE> declaration, <html> and <body> tags which contain other tags to define and structure the content.
This document provides an overview of HTML, CSS, and JavaScript. It discusses how HTML is used to define the structure and layout of web pages using markup tags, how CSS is used to style web pages, and how JavaScript can be used to add interactive elements. It also covers common HTML tags for headings, paragraphs, lists, and other content sections. Key elements like <head> and <body> are explained along with common tags used in each section.
HTML is a markup language used to define the structure and layout of web pages. It uses tags to mark up elements like headings, paragraphs, lists, and other semantic elements. Originally developed to share scientific information between researchers, HTML is now widely used to format web pages using tags like <html>, <head>, <body>, <h1>, and <p>. Elements can be nested within each other and attributes provide additional information about elements.
This document provides an overview of the features and functions of Microsoft Word. It explains how to create and save files, edit and format text including fonts, paragraphs, headers and footers, check spelling and grammar, insert special characters, print, add images, set page layouts, and add tables. Key features covered include bolding, italics, underline, font selection, alignment, line spacing, headers and footers, page numbers, symbols, print preview, clipart, borders, searching and replacing text, and inserting tables.
Microsoft PowerPoint is a Microsoft Office product that allows users to design multimedia slide presentations. It incorporates various media types like images, sounds, videos, text, and charts. PowerPoint interacts with other Office applications and is included in most Microsoft Office software packages. The software provides tools for formatting, adding and removing slides, changing slide layouts and views, modifying backgrounds and fonts, and inserting elements like clipart, word art, animations, and smart art.
This document provides an overview of Microsoft Access and how to create and manage databases. It discusses database files, tables, fields, and data types. It then explains how to create new databases and tables, enter and manipulate data, and generate forms and reports. The key steps covered include using wizards to easily set up databases, tables, forms and reports, and switching between design and datasheet views to enter and edit information.
Excel is an electronic spreadsheet program that allows users to store, organize, and manipulate data in a grid of rows and columns called a worksheet. Worksheets contain cells that can hold text, numbers, or formulas. Excel provides tools like functions, charts, and data analysis features to help work with large amounts of data. Users can enter values, edit data, search, zoom, and print worksheets.
Windows is an operating system produced by Microsoft that makes computers user-friendly by providing a graphical interface and organizing information for easy access. It features a taskbar, start button, desktop, and start menu to launch programs, access system settings and files, customize the desktop appearance, and open accessories like Notepad, Paint, and Sticky Notes. Users can view and open files on different drives through the My Computer window.
Odoo Inventory Rules and Routes v17 - Odoo SlidesCeline George
Odoo's inventory management system is highly flexible and powerful, allowing businesses to efficiently manage their stock operations through the use of Rules and Routes.
The ever evoilving world of science /7th class science curiosity /samyans aca...Sandeep Swamy
The Ever-Evolving World of
Science
Welcome to Grade 7 Science4not just a textbook with facts, but an invitation to
question, experiment, and explore the beautiful world we live in. From tiny cells
inside a leaf to the movement of celestial bodies, from household materials to
underground water flows, this journey will challenge your thinking and expand
your knowledge.
Notice something special about this book? The page numbers follow the playful
flight of a butterfly and a soaring paper plane! Just as these objects take flight,
learning soars when curiosity leads the way. Simple observations, like paper
planes, have inspired scientific explorations throughout history.
The *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responThe *nervous system of insects* is a complex network of nerve cells (neurons) and supporting cells that process and transmit information. Here's an overview:
Structure
1. *Brain*: The insect brain is a complex structure that processes sensory information, controls behavior, and integrates information.
2. *Ventral nerve cord*: A chain of ganglia (nerve clusters) that runs along the insect's body, controlling movement and sensory processing.
3. *Peripheral nervous system*: Nerves that connect the central nervous system to sensory organs and muscles.
Functions
1. *Sensory processing*: Insects can detect and respond to various stimuli, such as light, sound, touch, taste, and smell.
2. *Motor control*: The nervous system controls movement, including walking, flying, and feeding.
3. *Behavioral responses*: Insects can exhibit complex behaviors, such as mating, foraging, and social interactions.
Characteristics
1. *Decentralized*: Insect nervous systems have some autonomy in different body parts.
2. *Specialized*: Different parts of the nervous system are specialized for specific functions.
3. *Efficient*: Insect nervous systems are highly efficient, allowing for rapid processing and response to stimuli.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive in diverse environments.
The insect nervous system is a remarkable example of evolutionary adaptation, enabling insects to thrive
Understanding P–N Junction Semiconductors: A Beginner’s GuideGS Virdi
Dive into the fundamentals of P–N junctions, the heart of every diode and semiconductor device. In this concise presentation, Dr. G.S. Virdi (Former Chief Scientist, CSIR-CEERI Pilani) covers:
What Is a P–N Junction? Learn how P-type and N-type materials join to create a diode.
Depletion Region & Biasing: See how forward and reverse bias shape the voltage–current behavior.
V–I Characteristics: Understand the curve that defines diode operation.
Real-World Uses: Discover common applications in rectifiers, signal clipping, and more.
Ideal for electronics students, hobbyists, and engineers seeking a clear, practical introduction to P–N junction semiconductors.
Multi-currency in odoo accounting and Update exchange rates automatically in ...Celine George
Most business transactions use the currencies of several countries for financial operations. For global transactions, multi-currency management is essential for enabling international trade.
How to Customize Your Financial Reports & Tax Reports With Odoo 17 AccountingCeline George
The Accounting module in Odoo 17 is a complete tool designed to manage all financial aspects of a business. Odoo offers a comprehensive set of tools for generating financial and tax reports, which are crucial for managing a company's finances and ensuring compliance with tax regulations.
A measles outbreak originating in West Texas has been linked to confirmed cases in New Mexico, with additional cases reported in Oklahoma and Kansas. The current case count is 795 from Texas, New Mexico, Oklahoma, and Kansas. 95 individuals have required hospitalization, and 3 deaths, 2 children in Texas and one adult in New Mexico. These fatalities mark the first measles-related deaths in the United States since 2015 and the first pediatric measles death since 2003.
The YSPH Virtual Medical Operations Center Briefs (VMOC) were created as a service-learning project by faculty and graduate students at the Yale School of Public Health in response to the 2010 Haiti Earthquake. Each year, the VMOC Briefs are produced by students enrolled in Environmental Health Science Course 581 - Public Health Emergencies: Disaster Planning and Response. These briefs compile diverse information sources – including status reports, maps, news articles, and web content– into a single, easily digestible document that can be widely shared and used interactively. Key features of this report include:
- Comprehensive Overview: Provides situation updates, maps, relevant news, and web resources.
- Accessibility: Designed for easy reading, wide distribution, and interactive use.
- Collaboration: The “unlocked" format enables other responders to share, copy, and adapt seamlessly. The students learn by doing, quickly discovering how and where to find critical information and presenting it in an easily understood manner.
As of Mid to April Ending, I am building a new Reiki-Yoga Series. No worries, they are free workshops. So far, I have 3 presentations so its a gradual process. If interested visit: https://www.slideshare.net/YogaPrincess
https://ldmchapels.weebly.com
Blessings and Happy Spring. We are hitting Mid Season.
Title: A Quick and Illustrated Guide to APA Style Referencing (7th Edition)
This visual and beginner-friendly guide simplifies the APA referencing style (7th edition) for academic writing. Designed especially for commerce students and research beginners, it includes:
✅ Real examples from original research papers
✅ Color-coded diagrams for clarity
✅ Key rules for in-text citation and reference list formatting
✅ Free citation tools like Mendeley & Zotero explained
Whether you're writing a college assignment, dissertation, or academic article, this guide will help you cite your sources correctly, confidently, and consistent.
Created by: Prof. Ishika Ghosh,
Faculty.
📩 For queries or feedback: [email protected]
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessMark Soia
Boost your chances of passing the 2V0-11.25 exam with CertsExpert reliable exam dumps. Prepare effectively and ace the VMware certification on your first try
Quality dumps. Trusted results. — Visit CertsExpert Now: https://www.certsexpert.com/2V0-11.25-pdf-questions.html
How to Set warnings for invoicing specific customers in odooCeline George
Odoo 16 offers a powerful platform for managing sales documents and invoicing efficiently. One of its standout features is the ability to set warnings and block messages for specific customers during the invoicing process.
How to manage Multiple Warehouses for multiple floors in odoo point of saleCeline George
The need for multiple warehouses and effective inventory management is crucial for companies aiming to optimize their operations, enhance customer satisfaction, and maintain a competitive edge.
Presentation on Tourism Product Development By Md Shaifullar RabbiMd Shaifullar Rabbi
Basic Html Knowledge for students
2. What is HTML?
HTML is short for "Hyper Text Markup Language".
It simply means it is a language for describing web-pages using
ordinary text.
All HTML documents must start with a type declaration: <!DOCTYPE
html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is
between <body> and </body>.
4. • 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. Like Adobe Dreamweaver, Microsoft
Expression Web, Coffee Cup HTML Editor
HTML Files
5. HTML Tags
HTML tags are the hidden keywords within a web page that define how the
browser must format and display the content.
Most tags must have two parts, an opening and a closing part.
For example, <html> is the opening tag and </html> is the closing tag. Note that
the closing tag has the same text as the opening tag, but has an additional
forward-slash ( / ) character.
The purpose of a web browser (Chrome, IE, Firefox, Safari) is to read HTML
documents and display them.
The browser does not display the HTML tags, but uses them to determine how to
display the document:
6. The DOCTYPE declaration defines the document type to be HTML
The text between <html> and </html> describes an HTML
document
The text between <head> and </head> provides information about
the document
The text between <title> and </title> provides a title for the
document
The text between <body> and </body> describes the visible page
content
The text between <h1> and </h1> describes a heading
The text between <p> and </p> describes a paragraph
7. HTML Elements
• An HTML element is defined by a starting tag. If the element
contains other content, it ends with a closing tag, where the
element name is preceded by a forward slash as shown below
with few tags:
Start Tag Content End Tag
<p> This is paragraph content. </p>
<h1> This is heading content. </h1>
<div> This is division content. </div>
<br />
8. • Here <p>....</p> is an HTML element, <h1>...</h1> is another HTML
element.
• There are some HTML elements which don't need to be closed, such as
<img.../>, <hr /> and <br /> elements.
• These are known as void elements.
• HTML documents consist of a tree of these elements and they specify
how HTML documents should be built, and what kind of content should
be placed in what part of an HTML document.
• An HTML element is defined by a starting tag. If the element contains
other content, it ends with a closing tag.
• For example <p> is starting tag of a paragraph and </p> is closing tag of
the same paragraph but <p>This is paragraph</p> is a paragraph
element
9. HTML Attributes
An attribute is used to define the characteristics of an HTML element and is
placed inside the element's opening tag. All attributes are made up of two parts:
a name and a value.
The name is the property you want to set. For example, the paragraph <p>
element in the example carries an attribute whose name is align, which you can
use to indicate the alignment of paragraph on the page.
The value is what you want the value of the property to be set and always put
within quotations. The below example shows three possible values of align
attribute: left, center and right.
11. Core Attributes
The four core attributes that can be used on the majority of HTML elements are:
Id
Title
Class
style
12. The id Attribute
The id attribute of an HTML tag can be used to uniquely identify any element
within an HTML page. There are two primary reasons that you might want to
use an id attribute on an element:
If an element carries an id attribute as a unique identifier it is possible to
identify just that element and its content.
If you have two elements of the same name within a Web page (or style
sheet), you can use the id attribute to distinguish between elements that have
the same name.
Example:
<p id="html">This para explains what is HTML</p>
<p id="css">This para explains what is Cascading Style Sheet</p>
13. The title Attribute
• The title attribute gives a suggested title for the element. They syntax for
the title attribute is similar as explained for id attribute:
• Example
<!DOCTYPE html>
<html>
<head>
<title>The title Attribute Example</title>
</head>
<body>
<h3 title="Hello HTML!">Titled Heading Tag Example</h3>
</body>
</html>
14. The class Attribute
• The class attribute is used to associate an element with a style
sheet, and specifies the class of element.
• Example:
class="className1 className2 className3"
15. The style Attribute
• The style attribute allows you to specify Casecading Style Sheet (CSS) rules
within the element.
• Example:
<!DOCTYPE html>
<html>
<head>
<title>The style Attribute</title>
</head>
<body>
<p style="font-family:arial; color:#FF0000;">Some text...</p>
</body>
</html>
16. HTML Headings
• Headings are defined with the <h1> to <h6> tags.
• <h1> defines the most important heading. <h6> defines the least important
heading.
Example:
<!DOCTYPE html>
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>
17. <hr> tag
The <hr> tag creates a horizontal line in an HTML page.
The hr element can be used to separate content:
Example:
<!DOCTYPE html>
<html>
<body>
<p>The hr tag defines a horizontal rule:</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
</body>
</html>
18. HTML Paragraphs
• <p> </p> element
• The HTML <p> element defines a paragraph.
• In HTML You cannot be sure how HTML will be displayed.
• Large or small screens, and resized windows will create different results.
• With HTML, you cannot change the output by adding extra spaces or extra lines
in your HTML code.
• The browser will remove extra spaces and extra lines when the page is
displayed.
• Any number of spaces, and any number of new lines, count as only one
space.
20. • <br> element
• The HTML <br> element defines a line break.
• Use <br> if you want a line break (a new line) without starting a new paragraph
• The <br> element is an empty HTML element. It has no end tag.
• Example :
<!DOCTYPE html>
<html>
<body>
<p>This is<br>a para<br>graph with<br> line breaks</p>
</body>
</html>
21. • <pre> element
• The HTML <pre> element defines preformatted text.
• The text inside a <pre> element is displayed in a fixed-width font.
• It is used for poem writing.
• Example:
<!DOCTYPE html>
<html>
<body>
<p>The pre tag preserves both spaces and line breaks:</p>
<pre>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
</pre>
</body>
</html>
23. HTML Styles
• Every HTML element has a default style (background color is white and text
color is black).
• Changing the default style of an HTML element, can be done with the style
attribute.
• The HTML style attribute has the following syntax:
style="property:value“
• Example:
<!DOCTYPE html>
<html><body>
<h2 style="color:red">I am Red</h2>
<h2 style="color:blue">I am Blue</h2>
</body> </html>
25. Change Text Color
Example :
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue">This is a heading</h1>
<p style="color:red">This is a paragraph.</p>
</body>
</html>
27. Change Text Size
Example:
<!DOCTYPE html>
<html>
<body>
<h1 style="font-size:300%">
This is a heading
</h1>
<p style="font-size:160%">
This is a paragraph
.</p>
</body>
</html>
28. Change Text Alignment
Example:
<!DOCTYPE html>
<html>
<body>
<h1 style="text-align:center"> Centered heading </h1>
<h1 style="text-align:left"> left heading </h1>
<h1 style="text-align:right"> right heading </h1>
</body> </html>
29. HTML Text Formatting Elements
<b> element or <strong>
• The HTML <b> and <strong> element defines bold text, without any extra
importance.
• Example
<!DOCTYPE html>
<html>
<body>
<p>This text is normal.</p>
<p><b>This text is bold.</b></p>
<p><strong>This text is strong.</strong></p>
</body> </html>
30. <i> or <em> element
• Both defines italic text, without any extra importance.
• Example
<!DOCTYPE html>
<html>
<body>
<p><em>This text is emphasized.</em></p>
<p>This text is normal.</p>
<p><i>This text is italic.</i></p>
</body>
</html>
31. <small> element
• The HTML <small> element defines small text:
• Example:
<!DOCTYPE html>
<html>
<body>
<h2>HTML <small>Small</small> Formatting</h2>
</body>
</html>
32. <mark> element
• The HTML <mark> element defines marked or highlighted text:
• Example
<!DOCTYPE html>
<html>
<body>
<h2>HTML <mark>Marked</mark> Formatting</h2>
</body>
</html>
33. <del> element
• The HTML <del> element defines deleted (removed) of text.
• Example :
<!DOCTYPE html>
<html>
<body>
<p>The del element represent deleted (removed) text.</p>
<p>My favorite color is <del>blue</del> red.</p>
</body>
</html>
34. <ins> element
• The HTML <ins> element defines inserted (added) text.
• Example:
<!DOCTYPE html>
<html>
<body>
<p>The ins element represent inserted (added) text.</p>
<p>My favorite <ins>color</ins> is red.</p>
</body>
</html>
35. <sub> element
• The HTML <sub> element defines subscripted text.
• Example:
<!DOCTYPE html>
<html>
<body>
<p>This is <sub>subscripted</sub> text.</p>
</body>
</html>
36. <sup> element
• The HTML <sup> element defines superscripted text.
• Example:
<!DOCTYPE html>
<html>
<body>
<p>This is <sup>superscripted</sup> text.</p>
</body>
</html>
37. HTML Quotation and Citation Elements
<q> element
• The HTML <q> element defines a short quotation.
• Example:
<!DOCTYPE html>
<html>
<body>
<p>Browsers insert quotation marks around the q element.</p>
<p>WWF's goal is to: <q>Build a future where people live in harmony with
nature.</q></p>
</body> </html>
38. <blockquote> element
• The HTML <blockquote> element defines a quoted section.
• Example:
<!DOCTYPE html>
<html> <body>
<p>Browsers usually indent blockquote elements.</p>
<blockquote>
For 50 years, WWF has been protecting the future of nature.
The world's leading conservation organization,
WWF works in 100 countries and is supported by
1.2 million members in the United States and
close to 5 million globally.
</blockquote>
</body> </html>
39. <abbr> element
• The HTML <abbr> element defines an abbreviation or an acronym.
• Example
<!DOCTYPE html>
<html>
<body>
<p>The <abbr title="World Health Organization">WHO</abbr> was founded in
1948.</p>
<p>Marking up abbreviations can give useful information to browsers, translation
systems and search-engines.</p>
</body>
</html>
When we put cursor on abbreviation its
full form appear
40. <address> element
• The HTML <address> element defines contact information (author/owner) of a
document or article.
• Example
<!DOCTYPE html>
<html>
<body>
<p>The HTML address
element defines
contact information
(author/owner)
of a document or
article.</p>
<address>
Written by Jon Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
</body>
</html>
41. <bdo> element
• The HTML <bdo> element defines bi-directional override.
• If your browser supports bdo, this text will be written from right to left:
• Example
<!DOCTYPE html>
<html>
<body>
<p>If your browser supports bi-directional override (bdo), the next line will be written
from right to left (rtl):</p>
<bdo dir="rtl">This line will be written from right to left</bdo>
</body>
</html>
42. HTML Styles - CSS
CSS stands for Cascading Style Sheets
Styling can be added to HTML elements in 3 ways:
1. Inline - using a style attribute in HTML elements
2. Internal - using a <style> element in the HTML <head> section
3. External - using one or more external CSS files
The most common way to add styling, is to keep the styles in separate CSS
files.
SS styling has the following syntax:
element { property:value; property:value }
The element is an HTML element name. The property is a CSS property.
The value is a CSS value.
43. Inline Styling (Inline CSS)
• Inline styling is useful for applying a unique style to a single HTML element
• Inline styling uses the style attribute.
• Example
<!DOCTYPE html>
<html>
<body>
<h1 style="color:blue">
This is a Blue Heading
</h1>
</body>
</html>
44. Internal Styling (Internal CSS)
• An internal style sheet can be used to define a common style for all HTML
elements on a page.
• Internal styling is defined in the <head> section of an HTML page, using
a <style> element
• Example:
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color:pink}
h1 {color:blue}
p {color:darkgreen}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body> </html>
45. External Styling (External CSS)
• External style sheet are ideal when the style is applied to many pages.
• With external style sheets, you can change the look of an entire web site by
changing one file.
• External styles are defined in an external CSS file, and then linked to in
the <head> section of an HTML page
• Example
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
46. CSS Fonts
• The CSS color property defines the text color to be used for the HTML element.
• The CSS font-family property defines the font to be used for the HTML element.
• The CSS font-size property defines the text size to be used for the HTML
element.
• Example:
<!DOCTYPE html>
<html>
<head> <style> h1 {color:blue; font-family:verdana; font-size:300%;}
p {color:red; font-family:courier; font-size:160%;} </style>
</head>
<body> <h1>This is a heading</h1> <p>This is a paragraph.</p>
</body> </html>
47. The CSS Box Model
1. Border:
• Every HTML element has a box around it, even if you cannot see it.
• The CSS border property defines a visible border around an HTML element:
• Example
<!DOCTYPE html>
<html>
<head> <style> p {border:1px solid red;} </style> </head>
<body>
<h1>This is a heading</h1> <p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
48. 2. Padding
• The CSS padding property defines a padding (space) inside the border.
• Example
<!DOCTYPE html>
<html>
<head>
<style> p {border:3px solid red;padding:10px;} </style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>
49. 3. Margin
• The CSS margin property defines a margin (space) outside the border:
• Example
<!DOCTYPE html>
<html><head>
<style>p { border:1px solid red; padding:5px;margin:60px;}
</style></head>
<body>
<h1>This is a heading</h1><p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body></html>
50. 4. The id Attribute
• All the examples above use CSS to style HTML elements in a general way.
• To define a special style for one special element, first add an id attribute to the
element
• Example
<!DOCTYPE html>
<html>
<head>
<style>
p#p01 {color: blue;}
</style>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p id="p01">I am different.</p>
</body>
</html>
51. 5. The class Attribute
• To define a style for a special type (class) of elements, add a class attribute to
the element
• Example
<!DOCTYPE html>
<html>
<head>
<style>
p.error {color:red;}
</style>
</head>
<body>
<p>This is a paragraph.</p>
<p class="error">I am different.</p>
<p>This is a paragraph.</p>
<p class="error">I am different too.</p>
</body>
</html>
52. HTML Links
• HTML links are hyperlinks.
• A hyperlink is a text or an image you can click on, and jump to another
document.
• In HTML, links are defined with the <a> tag
• HTML link syntax is <a href="url"> link text </a>
• The href attribute specifies the destination address (http://www.vethics.com)
• The link text is the visible part (Visit our HTML tutorial).
• Clicking on the link text, will send you to the specified address.
53. Example :
<!DOCTYPE html>
<html>
<body>
<p>
<a href="http://www.vethics.com">
Visit our website
</a>
</p>
</body>
</html>
By clicking on
link the site
will open
54. HTML Images
• In HTML, images are defined with the <img> tag.
• The <img> tag is empty, it contains attributes only, and does not have a closing
tag.
• The src attribute defines the url (web address) of the image
• The alt attribute specifies an alternate text for the image, if it cannot be
displayed.
• Its syntax is <img src="url" alt="some_text">
• You can use the style attribute to specify the width and height of an image.
56. HTML Lists
Unordered HTML Lists
• An unordered list starts with the <ul> tag.
• Each list item starts with the <li> tag.
• The list items will be marked with bullets (small black circles).
• Examples
<!DOCTYPE html>
<html>
<body>
<h2>
Unordered List with Default Bullets
</h2>
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
57. Style Description
list-style-type:disc The list items will be marked with bullets
(default)
list-style-type:circle The list items will be marked with circles
list-style-type:square The list items will be marked with squares
list-style-type:none The list items will not be marked
58. Ordered HTML Lists
• An ordered list starts with the <ol> tag.
• Each list item starts with the <li> tag.
• The list items will be marked with numbers.
• Example
<!DOCTYPE html>
<html>
<body>
<h2>Ordered List</h2>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
</body>
</html>
59. Type Description
type="1" The list items will be numbered with numbers (default)
type="A" The list items will be numbered with uppercase letters
type="a" The list items will be numbered with lowercase letters
type="I" The list items will be numbered with uppercase roman
numbers
type="i" The list items will be numbered with lowercase roman
numbers
60. HTML Description Lists
• A description list, is a list of terms, with a description of each term.
• The <dl> tag defines a description list.
• The <dt> tag defines the term (name), and the <dd> tag defines the data
(description).
• Example
<!DOCTYPE html>
<html>
<body>
<h2>A Description List</h2>
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
</body>
</html>
61. HTML Tables
• Tables are defined with the <table> tag.
• Tables are divided into table rows with the <tr> tag.
• Table rows are divided into table data with the <td> tag.
• A table row can also be divided into table headings with the <th> tag.
• If you do not specify a border for the table, it will be displayed without borders.
• A border can be added using the border attribute