<p>一个来自文件夹中的图像:</p>
一个来自菜鸟教程的图像:
ul 无序列表 li表示列表的项 style="list-style-type:circle" ol有序 li表示列表的项 type是类型,取值为A /a/I/i type="I" dl自定义列表 自定义项由dt开始 dd
内联元素 : 不会以新行开始 /
<div id="container" style="width:500px;">
<div id="header" style="background-color:#ffA500;">
<h1 style="margin-bottom:0px">网页的主要标题</h1></div>
<div id="menu" style="width:100px;background-color:#ffd700;float:left;height:200px">
<b>caidan<br>
ddd<br>
sadfs<br>
ee<br></b>
</div>
<form>用于创建表单 action 属性定义表单数据提交的目标url method 定义提交胡http方法
label 给表单添加标价签,提高可访问性 input 表单的输入框,根据type可分为输入框 密码框 单选框,复选框等 id用于关联lable name用于标示表单字段 select 创建下拉列表 option定义下拉列表的选项
textarea 文本域
fieldset 表格边框
<form action = "/" method="post">
<lable for="name">用户名:</label>
<input type="text" id="name" name="name" required>
<br>
<lable for="password">密码:</label>
<input type="password" id="password" name="password" required>
<br>
<lable >性别:</label>
<input type="radio" id="male" name="gender" value = "male"checked>
<lable for="male">男</label>
<input type="radio" id="female" name="gender" value = "female">
<lable for="female">女</label>
<br>
<input type="checkbox" id="subscribe" name="subscribe" checked required>
<lable for="subscribe">订阅推送信息</label>
<br>
<textarea rows="10" cols="40"></textarea>
<br>
<lable for="country">国家:</label>
<select id = "country" name="country" required>
<option value="cn">CN</option>
<option value="usa">USA</option>
<option value="uk">UK</option>
</select>
<br>
<input type="submit" value="提交">
</form>
<!--
iframe 在同一个浏览器窗口中显示不止一个画面
src 其他html地址
clolr #ffffff /#fff / rgb(0,0,0)
定义客户端脚本 script 1、可以直接写html语句 document.write("222222ee") 2.通过id获取元素
x = document.getElementById("DEMOpp") x.style.color="red"
html实体字符指的是html的预留字符
应该用>
url 统一资源定位符 格式:scheme://host.domain:port/path/filename
scheme - 定义因特网服务的类型。最常见的类型是 http (超文本传输协议) /https( 安全超文本传输协议)/ ftp(文件传输协议,用于将文件下载或者上传至网站) /file 自己计算机上的文件