first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="shortcut icon" href="https://assets2016.bmob.cn/img/favicon.ico" type="image/x-icon"/>
</head>
<body>
<a href="https://www.baidu.com">超链接</a>
<img src="test/demo.jpg" alt="图片无法显示" srcset="">
<h1>1</h1>
<h2>2</h2>
<h3>3</h3>
<h4>4</h4>
<h5>5</h5>
<h6>6</h6>
<input type="text" placeholder="输入账户">
<input type="password" placeholder="输入密码">
<input type="date">
<input type="file">
<input type="number" placeholder="请输入手机号">
<input type="color">
<input type="hidden" value="test/demo.jpg">
<input type="radio" name="answer">
<input type="radio" name="answer">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<input type="checkbox" name="answer1">
<br/>
<h2>请输入账号:
<input type="text" placeholder="账号">
</h2>
<h2>请输入密码:
<input type="password" autofocus placeholder="密码">
</h2>
<h2>请选择头像:
<input type="file">
</h2>
<h2>请选择你的兴趣爱好</h2>
<input type="checkbox"> 骑车 <br>
<input type="checkbox"> 打游戏 <br>
<input type="checkbox"> 逛街,看电影 <br>
<input type="checkbox"> 游泳 <br>
<h2>你喜欢我的这个网站吗?</h2>
<input type="radio" name="youlike"> 喜欢 <br>
<input type="radio" name="youlike"> 不喜欢 <br>
<input type="radio" name="youlike"> 一般 <br>
<input type="radio" name="youlike"> 还好 <br>
<input type="button" value="提交注册信息">
<ul>
<li>
1第一章html
<ul>
<li>html概念</li>
<li>html基本组成</li>
<li>html标签</li>
</ul>
</li>
<li>2第二章css</li>
<li>3第三章js</li>
</ul>
<ol>
<li>第一章html</li>
<li>第二章css</li>
<li>第三章js</li>
</ol>
<video src="http://www.runoob.com/try/demo_source/movie.mp4" controls loop muted autoplay></video>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,40 @@
1: 一个html文件里面在最外层必须要包含 <html></html>
所有的代码都必须包含在这里面。
2body 可视区域一般需要在页面上显示给用户看的代码必须包含在body中
3head 一般放在head标签里面的内容是不想给用户看的给浏览器看完成一些浏览器的设置或者网站的默认设置
标签:
1meta元数据标签里面包含了很多一大堆的其他功能代码
<meta charset="UTF-8"/> 定义网站使用什么编码
参看网站https://blog.csdn.net/qq_16559905/article/details/51182085
2: h1 ~ h6 ,数字越小显示效果越大,数字越大显示效果越小
3: img 显示一个图片
4: <br/> 换行
5: ul li : 无序列表 一般开发过程中 ul 用的比较多
ol li : 有序列表
适用场景:一般用于做网站的导航菜单,新闻列表
标签学习地址http://www.runoob.com/tags/html-reference.html
下节课:
form表单
音频标签
textarea
等。。。。