search
HomeWeb Front-endFront-end Q&AHow to make html web page

How to make html web page

May 27, 2023 am 11:41 AM

1. What is HTML?

HTML (Hyper Text Markup Language), that is, hypertext markup language. Simply put, it is the basic language for web page production. It is a markup language that describes web pages through markup. Each web page may be composed of multiple web page elements (such as text, images, videos, audio, etc.). The main function of HTML is to organize the text, images, audio, video and other content and format information input by the user to form a web page document, which is parsed and rendered by the browser and finally presented to the user.

2. HTML tags

HTML tags are the core concept of HTML. They are commands wrapped in angle brackets that tell the browser how to display text. HTML tags include a start tag (e.g. ), an end tag (e.g. ), or a single tag (e.g. <img src="/static/imghwm/default1.png" data-src="script.js" class="lazy" alt="How to make html web page" > ).

When writing HTML, you must follow the following rules:

  1. All HTML elements must be within the opening tag <tag></tag> and the closing tag &lt ;/tag> is closed. For a single tag, you can use the self-closing tag <tag></tag>. The
  2. tag is the root tag, indicating the beginning of the entire HTML document. The tag must be included in all HTML elements.
  3. Each HTML page needs to contain and tags. The tag contains the metadata of the document, such as the document's title, keywords, etc. tag contains visible page content, such as text, images, etc.
  4. In HTML, tags and attributes are not case-sensitive, but it is recommended to use lowercase letters to enhance the readability of the code.

The following is an example of an HTML template:

<!DOCTYPE html> 
<html>
  <head>
    <title>标题</title>
  </head>
  <body>
    <h1 id="标题">标题 1</h1>
    <p>这是一个段落。</p>
  </body>
</html>

3. CSS

CSS (Cascading Style Sheets) is a description of web page styles and The language of layout. It is used along with HTML to create beautiful web pages. CSS controls aspects of web page display such as fonts, colors, backgrounds, borders, and layout.

There are two ways to embed CSS styles in HTML: internal styles and external styles.

Internal style is to add CSS code style in the tag of the page code, for example:

<!DOCTYPE html> 
<html>
  <head>
    <title>标题</title>
    <style>
      h1 {
        color: blue;
        font-family: Arial;
      }
    </style>
  </head>
  <body>
    <h1 id="标题">标题 1</h1>
    <p>这是一个段落。</p>
  </body>
</html>

External style sheet is to add style rules to external files For example:

In the style file style.css:

h1 {
  color: blue;
  font-family: Arial;
}

Add external style to the HTML page:

<!DOCTYPE html> 
<html>
  <head>
    <title>标题</title>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>
  <body>
    <h1 id="标题">标题 1</h1>
    <p>这是一个段落。</p>
  </body>
</html>

4. JavaScript

JavaScript It is a scripting language used to control HTML content and make web pages interactive and dynamic. It can be used for interaction with users, such as form validation, image switching, dynamically updating pages, etc.

There are two ways to embed JavaScript in HTML pages: internal scripts and external scripts.

Internal script is to add JavaScript code in or of the page code, for example:

<!DOCTYPE html> 
<html>
  <head>
    <title>标题</title>
    <script>
      function sayHello() {
        alert("Hello!");
      }
    </script>
  </head>
  <body>
    <button onclick="sayHello()">点击这里</button>
  </body>
</html>

External script It is to add the script code to the external file, for example:

In the script file script.js:

function sayHello() {
  alert("Hello!");
}

Add the external script to the HTML page:

<!DOCTYPE html> 
<html>
  <head>
    <title>标题</title>
    <script></script>
  </head>
  <body>
    <button onclick="sayHello()">点击这里</button>
  </body>
</html>

5. Make an HTML page

The following are the steps to make a simple HTML page:

  1. Open a text editor, such as Notepad or Sublime Text.
  2. Create a new text file and save it in the .html file format.
  3. Write HTML code, including document type declaration, HTML element tags and content.
  4. Add CSS styles to control the appearance and style of your web pages.
  5. Add JavaScript scripts to control the interactivity and dynamics of web pages.
  6. Open the HTML file with a browser to preview and test the page.

For example, the following is an example of an HTML page containing CSS and JavaScript:

<!DOCTYPE html> 
<html>
  <head>
    <title>我的HTML页面</title>
    <style>
      body {
        background-color: #f2f2f2;
        font-family: Arial;
      }
      h1 {
        color: #009900;
        font-size: 36px;
        text-align: center;
        margin-top: 50px;
      }
    </style>
    <script>
      function sayHello() {
        alert("Hello!");
      }
    </script>
  </head>
  <body>
    <h1 id="欢迎访问我的HTML页面">欢迎访问我的HTML页面</h1>
    <button onclick="sayHello()">点击这里</button>
  </body>
</html>

6. Summary

HTML is the basic language for web page production. Use To describe and present web content. CSS and JavaScript can enhance the appearance and interactivity of web pages, making them more attractive. Making an HTML page requires following the rules of HTML tags, adding styles and scripts, and finally testing it in the browser. By learning HTML, CSS and JavaScript, you can gain basic knowledge of front-end development and lay a solid foundation for web design and development.

The above is the detailed content of How to make html web page. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What are the limitations of React?What are the limitations of React?May 02, 2025 am 12:26 AM

React'slimitationsinclude:1)asteeplearningcurveduetoitsvastecosystem,2)SEOchallengeswithclient-siderendering,3)potentialperformanceissuesinlargeapplications,4)complexstatemanagementasappsgrow,and5)theneedtokeepupwithitsrapidevolution.Thesefactorsshou

React's Learning Curve: Challenges for New DevelopersReact's Learning Curve: Challenges for New DevelopersMay 02, 2025 am 12:24 AM

Reactischallengingforbeginnersduetoitssteeplearningcurveandparadigmshifttocomponent-basedarchitecture.1)Startwithofficialdocumentationforasolidfoundation.2)UnderstandJSXandhowtoembedJavaScriptwithinit.3)Learntousefunctionalcomponentswithhooksforstate

Generating Stable and Unique Keys for Dynamic Lists in ReactGenerating Stable and Unique Keys for Dynamic Lists in ReactMay 02, 2025 am 12:22 AM

ThecorechallengeingeneratingstableanduniquekeysfordynamiclistsinReactisensuringconsistentidentifiersacrossre-rendersforefficientDOMupdates.1)Usenaturalkeyswhenpossible,astheyarereliableifuniqueandstable.2)Generatesynthetickeysbasedonmultipleattribute

JavaScript Fatigue: Staying Current with React and Its ToolsJavaScript Fatigue: Staying Current with React and Its ToolsMay 02, 2025 am 12:19 AM

JavaScriptfatigueinReactismanageablewithstrategieslikejust-in-timelearningandcuratedinformationsources.1)Learnwhatyouneedwhenyouneedit,focusingonprojectrelevance.2)FollowkeyblogsliketheofficialReactblogandengagewithcommunitieslikeReactifluxonDiscordt

Testing Components That Use the useState() HookTesting Components That Use the useState() HookMay 02, 2025 am 12:13 AM

TotestReactcomponentsusingtheuseStatehook,useJestandReactTestingLibrarytosimulateinteractionsandverifystatechangesintheUI.1)Renderthecomponentandcheckinitialstate.2)Simulateuserinteractionslikeclicksorformsubmissions.3)Verifytheupdatedstatereflectsin

Keys in React: A Deep Dive into Performance Optimization TechniquesKeys in React: A Deep Dive into Performance Optimization TechniquesMay 01, 2025 am 12:25 AM

KeysinReactarecrucialforoptimizingperformancebyaidinginefficientlistupdates.1)Usekeystoidentifyandtracklistelements.2)Avoidusingarrayindicesaskeystopreventperformanceissues.3)Choosestableidentifierslikeitem.idtomaintaincomponentstateandimproveperform

What are keys in React?What are keys in React?May 01, 2025 am 12:25 AM

Reactkeysareuniqueidentifiersusedwhenrenderingliststoimprovereconciliationefficiency.1)TheyhelpReacttrackchangesinlistitems,2)usingstableanduniqueidentifierslikeitemIDsisrecommended,3)avoidusingarrayindicesaskeystopreventissueswithreordering,and4)ens

The Importance of Unique Keys in React: Avoiding Common PitfallsThe Importance of Unique Keys in React: Avoiding Common PitfallsMay 01, 2025 am 12:19 AM

UniquekeysarecrucialinReactforoptimizingrenderingandmaintainingcomponentstateintegrity.1)Useanaturaluniqueidentifierfromyourdataifavailable.2)Ifnonaturalidentifierexists,generateauniquekeyusingalibrarylikeuuid.3)Avoidusingarrayindicesaskeys,especiall

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools