1. Trang chủ
  2. » Tất cả

Html css review 01 html

22 2 0
Tài liệu đã được kiểm tra trùng lặp

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Tiêu đề HTML Review 01 HTML
Trường học University of Example
Chuyên ngành Web Development
Thể loại Essay
Năm xuất bản 2023
Thành phố Sample City
Định dạng
Số trang 22
Dung lượng 2,95 MB

Các công cụ chuyển đổi và chỉnh sửa cho tài liệu này

Nội dung

HTML Version HistoryVersion Date Description HTML 1.0 1989 The first public version of HTML HTML 2.0 1995 HTML version that added interactive elements including web forms HTML 3.2 1997 H

Trang 1

HTML

Review

Trang 3

1 HTML Version History

Version Date Description

HTML 1.0 1989 The first public version of HTML

HTML 2.0 1995 HTML version that added interactive elements including web forms

HTML 3.2 1997 HTML version that provided additional support for web tables and expanded the options for interactive form elements and a scripting

language

HTML 4.01 1999 HTML version that added support for style sheets to give web designers greater control over page layout and appearance, and

provided support for multimedia elements such as audio and video

XHTML 1.0 2001 A reformulation of HTML 4.01 using the XML markup language in order to provide enforceable standards for HTML content and to

allow HTML to interact with other XML languagesXHTML 2.0 discontinued in 2009 The follow-up version to XHTML 1.1 designed to fix some of the problems inherent in HTML 4.01 syntax

HTML 5.0 2012 HTML version providing support for mobile design, semantic page elements, column layout, form validation, offline storage, and

enhanced multimediaHTML 5.2 2017 The current version of HTML 5

Trang 4

2 HTML Tag & Attributes

Two-sided tag: is a tag that contains some document

content General syntax for a two-sided tag:

<element attribute1 =” value1 ” >content</element>

 A two-sided tag’s opening tag (<p>) and closing tag (</p>) should completely enclose its content

<p>Welcome to the HTML</p>

One-sided tag: is an empty element General syntax for a

one-sided tag

<element attribute1 =” value1 ” />

<input type =“ text ” />

Trang 5

3 Basic Structure of HTML

Trang 6

4 Document Head Elements

Trang 7

Attributes of the meta element

Trang 8

Meta examples

Trang 9

5 HTML Comments

Trang 10

6 Sectioning Elements (Block Level)

Trang 12

7 Groupings Elements (Block Level)

Trang 13

8 Text-Level Elements (Inline Level)

Trang 14

9 Embedded Elements

Trang 15

10 Commonly used HTML Attributes

Trang 16

11 Special Characters

Character Encoding ( &#code; ): E.g &#169;  ©

Character Entity References ( &char; ): E.g &copy;  ©

 References: https://www.w3schools.com/html/html_symbols.asp

Trang 18

13 Linking HTML to StyleSheet

Trang 19

14 Hypertext Links (The <a> Tag)

Trang 20

 From ct_about.html: ct_contact.html or /ct_contact.html

 From index.html file: general/ct_contact.html or /general/ct_contact.html

 From ct_about.html: /docs/imgs/image.jpg or / /docs/imgs/image.jpg

 Absolute path: /docs/css/style.css

Specifying Folder Paths

Trang 21

Linking within a Document

Trang 22

THE END

Ngày đăng: 09/02/2023, 15:34

w