Front end Foundation (1), HTML
•
Java
1. Foreword
1.1 software architecture
1.2 the page consists of three parts
2. Introduction to HTML
3. Create HTML file (MacOS)
4. HTML writing framework
<html>
<head>
<Meta charset="UTF-8">
<title>页面的标题</title>
</head>
<body>
页面的内容
</body>
</html>
5. Introduction to HTML tags
5.1 format
<标签名>内容<标签名/>
5.2 characteristics
5.3 common labels
1、font
2. Replacement of special characters
3. Title label
4. Hyperlink ★★★★★
5. List label
<ul>
<li>单元格的内容1</li>
<li>单元格的内容2</li>
<li>单元格的内容3</li>
</ul>
<ol>
<li>单元格的内容1</li>
<li>单元格的内容2</li>
<li>单元格的内容3</li>
</ol>
6. Image label
7. Form label ★★★★★
<table align="center" border="1" width="300" height="300" cellspacing="0">
<tr>
<th>1.1</th>
<th>1.2</th>
<th>1.3</th>
</tr>
<tr>
<td>2.1</td>
<td>2.2</td>
<td>2.3</td>
</tr>
</table>
8. Cross row and cross column table ★★★
9. Embedded window -- iframe
10. Form label
<select>
<option>中国</option>
<option selected="selected">美国</option> 默认选中
<option>日本</option>
</select>
11. Form formatting
12. Form submission
13. Other labels
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码