html是什么
- 理解了html中 head,body
html的基本语法
-常用标签的基本用法<a href="https://www.php.cn/">php中文网</a>
<p>哈哈</p>
html中input标签的用法
<form action="1.php" method="get">
<label for="email">邮箱:</label>
<input type="email" placeholder="请填写邮箱" id="email" required>
<button>提交</button>
</form>
- 其中
for="email" 和 required
这个是在工作中没有没有用到而新发现的 - 还有层级嵌套
html 中的属性
id ,class ,style
-常用属性URL
- http和https 协议的详细解释还有 ftp中的解释