Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout

This introduction takes the screenshot of Google's homepage source code as an example:

From top to bottom:

<!DOCTYPE html> This tag tells the browser which HTML or XHTML specification the document uses.  

XHTML specification: must be lowercase, have start and end tags, and attributes must also be quoted in double quotes.  

HTML specification: not case-sensitive, has start and end tags, and the end tag can be placed inside the start tag, such as: <input type='text' />. Attributes can use double quotes or single quotes (must be used in pairs).

HTML node: The root node of the HTML page. The code information of the page is placed in this node.

<head> node: head node. Contains the following child nodes:

<mete> tag: provides meta-information of the page, such as page keywords;

<title> tag: the title of the page;

<script> tag: generally stores CSS and JavaScript codes;

<Body> node: page content area, storing html element information

<Div> tag: stores various element controls.

<script> tag: Because the HTML page is loaded from top to bottom, instead of displaying the contents all at once after loading, the contents are displayed while loading.

Putting Script after body is similar to indicating that the code in this Script will call the elements in body. If it is placed in the Head tag, when this script code is run, the elements in the body have not been loaded yet and the required element information cannot be obtained.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  How to manage multiple projects on CentOS SVN server

>>:  MySQL 8.0.22 download, installation and configuration method graphic tutorial

Recommend

Web Design Tutorial (3): Design Steps and Thinking

<br />Previous tutorial: Web Design Tutorial...

Teach you how to write maintainable JS code

Table of contents What is maintainable code? Code...

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

Vue login function implementation

Table of contents Written in front Login Overview...

A performance bug about MySQL partition tables

Table of contents 2. Stack analysis using pt-pmap...

mysql method to recursively search for all child nodes of a menu node

background There is a requirement in the project ...

Detailed explanation of the execution plan explain command example in MySQL

Preface The explain command is the primary way to...

Vue implements file upload and download functions

This article example shares the specific code of ...

Install and deploy java8 and mysql under centos7

Generally, learning Java and deploying projects a...

Solve the problem that the docker container cannot ping the external network

Today, when I was building a redis environment in...

Some things to note about varchar type in Mysql

Storage rules for varchar In versions below 4.0, ...

Learn more about using regular expressions in JavaScript

Table of contents 1. What is a regular expression...

Graphical tutorial on installing JDK1.8 under CentOS7.4

Linux installation JDK1.8 steps 1. Check whether ...

Detailed explanation of CSS line-height and height

Recently, when I was working on CSS interfaces, I...