Html/css BASICS (1), htmlcss Basics
I have just opened a blog Park today. Here I will talk about the recently Compiled html/css, which is helpful for beginners.
I. First, let's popularize the following html
(1) html English: hypertext markup language
(2) webpage: a webpage is suffixed ". html files, which are stored in a computer or server in the world, are connected to the Internet, and web pages are read through the web site (url (Unified Resource Locator), which is
One page (World Wide Web (a network connected by computers around the world), web pages read through browsers.
(3) websites (web for short): A website is composed of multiple web pages, but not a simple list combination, A hyperlink is used to form an organic system with both distinctive styles and perfect content.
(4) Standard of web Page composition elements: structure, performance, and behavior.
(5) three elements of web Front-end: html, css, and javaScript.
The above is the most basic understanding of our html. Next we will start to make our first web page. Of course, it is also my first web page.
I. Basic composition of pages
(1) root element:
(2) header:
(3) Page Description: <title> </title> [note]: contains the webpage window title.
(4) Subject content: <body> </body> [note]: contains your webpage content.
[Note]: html elements usually have closed tags, which are
Ii. officially start our first page
[Note]: programming software is not recommended for beginners. You can use NotePad to write or other software without prompts to improve your familiarity with the code.
<Html>
(1) Open notepad
(2) write our code in Notepad
(3) Save Our notepad. The file suffix must be saved as ". html". Otherwise, the browser cannot interpret it.
(4)← The last step is to open the saved .html file, and our page appears.
Now we have written a very simple page. Today's time is limited and we will continue tomorrow.