<!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中文网其他相关文章!