欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML 中一些常用的标签

程序员文章站 2022-03-02 14:37:55
...

HTML常用的标签:

<style> 加入css

方式一:
<style>
	css代码
</style>

方式二:
<link rel="stylesheet" href="css文件" type="text/css">
<script> 加入 js

<script src="jquery-3.1.1.js"></script>
<div> 块标签

<span> 行内标签

<h1><h6> 定义标题

<p>	段落标签

<br> 分段

<strong> 加粗

<em> 斜体

<a>	超链接

<ul>无序列表, 与<li>标签配合使用

<ins> 下划线

<del> 删除标志

<img> 导入图片

<form> 用于创建 HTML 表单,配合<input>标签使用
<input> 输入标签

单选
<input type='radio' name='gender' checked>男

多选框
<input type='checkbox' checked='checked'>
下拉菜单

<select>
	<option>first</option>
	<option>second</option>
</select>