Getting Started: A brief introduction to HTML's basic tags and attributes

Getting Started: A brief introduction to HTML's basic tags and attributes

HTML is made up of tags and attributes, which are used together to tell the browser how to display a page. A logo is used to reference a document component such as a text or an image. Attributes are options for a logo that are modified in the logo, such as color, alignment, height and width. Many signs appear in pairs, for example, the first one indicates the start, and the second one indicates
HTML is made up of tags and attributes, which are used together to tell the browser how to display a page. A logo is used to reference a document component such as a text or an image. Attributes are options for a logo that are modified in the logo, such as color, alignment, height and width. Many tags appear in pairs, for example, there is <TITLE> and there is </TITLE>. The first one indicates the beginning and the second one indicates the end, and the content is placed between the two.
Basic structure mark
< HTML > ----------Indicates that the file is an HTML file
<HEAD> ----------Contains the title of the file, used scripts, style definitions, etc.
<TITLE>HELLO WORLD! </TITLE> - contains the title of the file, which appears in the browser title bar
<HEAD> ----------</HEAD> end mark
<BODY> --------Place all the signs and attributes of the information displayed in the browser, and the content is displayed in the browser</BODY>
</ HTML > ----------< HTML > end tag
Other main symbols All the following symbols are used in <BODY></BODY>
<A HREF="…"></A> ----------Link symbol, “…” is the link file address
<IMG SRC="…"> ----------Displays the image logo, "…" is the address of the image
<BR> ----------Line break symbol
<P> ----------Segment mark
<B></B> ----------Use boldface
<I></I> ----------Use italics
<HR> ----------Horizontal line drawing
<TABLE></TABLE> ----------Defines a table, an important symbol in HTML
<TR></TR> ----------Defines the rows of a table, used in <TABLE></TABLE>
<TD></TD> ----------Table cell, used in <TR></TR>
<FONT></FONT> ----------font style logo
Usage of properties:
Attributes are used to modify tags and are placed inside the start tag.
For example: the attribute bgcolor="BLACK" means the background color is black. Examples of reference attributes: <BODY bgcolor="BLACK"></BODY> means the page background color is black, <TABLE bgcolor="BLACK"></TABLE> means the table background color is black.
Common properties: alignment properties range properties
ALIGN=LEFT Left alignment (default) WIDTH=width of object in pixels or percentage
ALIGN=CENTER Center HEIGHT=pixel value or percentage object height
ALIGN=RIGHT Right alignment color attribute
COLOR=#RRGGBB Foreground color reference color table
BGCOLOR=#RRGGBB Background color

<<:  Solution to Docker image downloading too slowly

>>:  A simple tutorial on how to use the mysql log system

Recommend

5 basic skills of topic page design (Alibaba UED Shanmu)

This topic is an internal sharing in the second h...

MySQL json format data query operation

The default table name is base_data and the json ...

MySQL knowledge points for the second-level computer exam mysql alter command

Usage of alter command in mysql to edit table str...

How to handle spaces in CSS

1. Space rules Whitespace within HTML code is usu...

Detailed tutorial on using cmake to compile and install mysql under linux

1. Install cmake 1. Unzip the cmake compressed pa...

How to simply configure multiple servers in nginx

1: I won’t go into the details of how to install ...

Linux uses stty to display and modify terminal line settings

Sttty is a common command for changing and printi...

How to use Docker to build a tomcat cluster using nginx (with pictures and text)

First, create a tomcat folder. To facilitate the ...

React's context and props explained

Table of contents 1. context 1. Usage scenarios 2...

How to check if a table exists in MySQL and then delete it in batches

1. I searched for a long time on the Internet but...

Detailed explanation of common for loop in JavaScript statements

There are many loop statements in JavaScript, inc...

MySQL 8.0.25 installation and configuration tutorial under Linux

The latest tutorial for installing MySQL 8.0.25 o...