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,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>我的html学习</title>
</head>
<body>
<a title="悬浮提示" href="https://www.runoob.com/tags/html-reference.html" target="_blank">百度</a>
<a href="tel:15056042604">联系我</a>
<p>段落</p>
<video src="https://www.runoob.com/try/demo_source/movie.mp4" controls muted autoplay ></video>
<audio src="https://www.runoob.com/try/demo_source/movie.mp4" controls muted autoplay ></audio>
<form action="https://www.runoob.com/tags/html-reference.html" method="get">
<input type="text" name="username" placeholder="用户名">
<input type="password" name="userpwd" placeholder="密码">
<input type="color" name="" id="">
<input type="file" name="" id="">
<input type="radio" name="ee">
<input type="radio" name="ee">
<input type="number" name="" id="">
<input type="checkbox">
<input type="checkbox">
<select name="" id="">
<option value="">-请选择-</option>
<option value="">合肥</option>
<option value="">南京</option>
</select>
<input type="submit" value="登录">
<!-- <button>登 录</button> -->
</form>
<del>删除线</del>
<ul>
<li>无序列表1</li>
<li>无序列表2</li>
<li>无序列表3</li>
<li>无序列表4</li>
<li>无序列表5</li>
</ul>
<ol>
<li>有序列表1</li>
<li>有序列表2</li>
<li>有序列表3</li>
<li>有序列表4</li>
<li>有序列表5</li>
</ol>
<h1>标题1</h1>
<h2>标题2</h2>
<h3>标题3</h3>
<h4>标题4</h4>
<h5>标题5</h5>
<h6>标题6</h6>
<i>实际项目是用来显示小图标的 iconfont</i>
<textarea name="" id="" cols="30" rows="10" placeholder="输入建议"></textarea>
</body>
</html>

View File

@@ -0,0 +1,78 @@
git 版本控制
合并代码(代码管理)
代码回滚
远程仓库
github web网站 全世界最大的代码仓库(世界最大的同性交友网站)
linux (linus) windows macos(unix)
gitlab
gitee 码云
coding
本地仓库
git init 初始化一个本地仓库
git add 文件名1 文件名2
git add -A(all)
git commit 设置上传备注
git push 上传(推送)代码到远程仓库
git pull 下载(拉取)远程最新代码到本地
如何提交本地修改过的代码到远程仓库???
git add -A
git commit -m "备注内容"
git pull
git push
代码冲突
网址
账户名
密码
md markdown
一种快速写作的方式
富文本编辑器
分efwef
测试修改
大青蛙多群无
html 人的骨骼 (网站基本结构)
css 人的外观 (网站的样式)
javascript 人的思想 (网站的特效&功能)
meta 元数据标签
ul 用于重复性的布局
弹性盒子
13个
rem
font-size: 1.6rem;
移动端一像素

View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
</div>
</body>
</html>