<!DOCTYPE html>
宣告開頭,這是告訴瀏覽器這個文件是一個HTML5 文檔。然後,我們使用<html>
標籤來定義整個網頁的開始和結束,像這樣:<!DOCTYPE html> <html> <head> <title>我的网页</title> </head> <body> <!-- 网页内容在这里 --> </body> </html>
<html>
標籤內,我們分別使用<head>
和<body>
標籤來定義網頁的頭部和主體部分。在頭部,我們可以定義網頁的元數據,例如標題、關鍵字和網頁描述等。在主體部分,我們放置我們的網頁內容。 <body>
標籤內,我們可以使用各種HTML 元素來新增文字內容,例如標題、段落、清單、連結等。例如:<h1>欢迎来到我的网页</h1> <p>这是一段文本内容。Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc nisl justo, feugiat vel ante quis, placerat finibus eros.</p> <ul> <li>列表项一</li> <li>列表项二</li> <li>列表项三</li> </ul> <a href="https://www.example.com/">这是一个链接</a>
<h1>
標籤來顯示標題, <p>
標籤來新增一個段落, <ul>
和<li>
標籤來建立一個無序列表,和<a>
標籤來建立一個超連結。 <p>同時我們可以使用 CSS(Cascading Style Sheets,層疊樣式表)來控制我們的網頁樣式。我們可以在頭部使用 <style>
標籤內來包含樣式程式碼。例如:<style> body { background-color: lightblue; } h1 { color: white; text-align: center; } p { font-family: verdana; font-size: 20px; } a { color: blue; text-decoration: none; } </style>
<img>
標籤可以為我們的網頁新增圖片。例如:<img src="https://www.example.com/image.jpg" alt="一张图片">
<audio controls> <source src="audio.mp3" type="audio/mpeg"> <source src="audio.ogg" type="audio/ogg"> Your browser does not support the audio tag. </audio> <video width="320" height="240" controls> <source src="video.mp4" type="video/mp4"> <source src="video.ogg" type="video/ogg"> Your browser does not support the video tag. </video>
<source>
標籤允許我們指定多個音訊或視訊文件,並且瀏覽器將選擇支援的格式播放它們。 controls
屬性啟用了播放器 UI。 <form> <label for="firstname">名字:</label> <input type="text" id="firstname" name="firstname"><br> <label for="lastname">姓氏:</label> <input type="text" id="lastname" name="lastname"><br> <label for="gender">性别:</label> <input type="radio" id="male" name="gender" value="male"> <label for="male">男</label> <input type="radio" id="female" name="gender" value="female"> <label for="female">女</label><br> <label for="country">国家:</label> <select id="country"> <option value="china">中国</option> <option value="usa">美国</option> <option value="uk">英国</option> </select><br> <input type="submit" value="提交"> </form>
<label>
標籤來識別每個表單元素,並在 <input>
標籤中設定了元素的類型屬性。
以上是html流程的詳細內容。更多資訊請關注PHP中文網其他相關文章!