HTML
1. HTMl定義
FTP UPLOAD|ooxx.avi|1024 --> HTTP協議
HTML: 超文本標記語言
2. HTML標籤的結構
HTML的結構
head --> 給瀏覽器看的內容
title --> 標題
style --> CSS樣式
link --> CSS文件
script --> JS
meta
<meta charset="UTF-8">
<meta http-equiv="refresh" content="2;URL=https://www.oldboyedu.com">
body --> 給用戶看的內容css
HTML標籤的語法:
<head 屬性1=值1 屬性2=值2></head>
<body></body>html
<imgsrc="https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=4278083535,964765985&fm=27&gp=0.jpg" alt="劉詩詩" title="鼠標">
<a href="https://www.taobao.com">淘</a>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>哈哈</h1> <form action="'http://127.0.0.1:8090" method="post"> <label for="i">用戶名</label> <input type="text" id="i" placeholder="請輸入用戶名"> <label>密碼 <input type="password" placeholder="請輸入密碼"> </label> <br> <br> <label>時間 <input type="date" placeholder="請輸入時間"> </label> <label>郵箱 <input type="email" placeholder="請輸入郵箱"> </label> <hr> <input type=checkbox>閱讀並接受<<百度用戶協議>> <hr> <select name="city"> <option value="020">北京市</option> <option value="010">上海市</option> <option value="000" selected>深圳市</option> </select> <hr> <select name="city" multiple> <option value="020" selected>北京市</option> <option value="010" selected>上海市</option> <option value="000" selected>深圳市</option> </select> <hr> <textarea name="'info" cols="60" rows="20"></textarea> <hr> <input type="file" name="avatar"> <hr> <input type="button" value="按鈕"> <input type="reset" value="重置"> <input type="submit"> </form> <hr> <form action="http://127.0.0.1:8080" method="post"> <input type="text" name="alex"> <input type="submit"> </form> </body> </html>