This commit is contained in:
2025-10-06 00:31:28 +08:00
parent 8750fb6a9c
commit 6a0c4b2c04
14 changed files with 161 additions and 0 deletions

View File

@@ -1,3 +1,14 @@
# 学习计划
| **阶段** | **时长** | **内容** | 课时 |
| :---------: | :------: | :---------------------------------------------------- | ------- |
| Web前端基础 | 2天 | HTML、CSS、JS、Vue3、Ajax | 1-30 |
| Web后端基础 | 4天 | Maven、HTTP协议、Spring IOC、DI、MySQL、JDBC、Mybatis | 31-132 |
| Web后端实战 | 6天 | Tlias案例基于案例讲解web开发的核心知识 | 160-181 |
| Web后端进阶 | 2天 | SpringAOP、SpringBoot原理、自定义Starter、Maven高级 | 133-152 |
| 前端web实战 | 4天 | Vue工程化、ElementPlus、Tlias案例 | 153-159 |
| 项目部署 | 2天 | Linux、Docker | 182-200 |
# git的使用方法
""和''中间的内容是需要修改的 ()部分是需要修改成对应信息的

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<!-- 声明文档类型为HTML5 -->
<html lang="en">
<head>
<!-- 字符集 -->
<meta charset="UTF-8">
<!-- 设置页面显示宽度,页面宽度等于设备宽度 以及 页面缩放比例 1:1 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML快速入门</title>
</head>
<body>
<h1>HTML的快速入门</h1>
<img src="img/1.png">
<!-- 定义一个一级标题标题内容Hello HTML -->
<h1>Hello HTML</h1>
</body>
</html>

View File

@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</title>
</head>
<body>
<!-- 定义一个标题, 标题内容:【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章 -->
<h1>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</h1>
<!-- 定义一个超链接,里面展示,央视网 -->
<!-- a 超链接标签:
href 属性:超链接地址
target 属性:超链接打开方式
_self当前窗口打开
_blank新窗口打开
默认为_self
-->
<a href="https://www.cctv.com/" target="_blank">央视网</a>
2024年05月15日 20:07
</body>
</html>

View File

@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</title>
<!-- 方式二:内部样式 -->
<!-- <style>
span{
color: gray;
}
</style> -->
<!-- 方式三:外部样式 -->
<link rel="stylesheet" href="css/news.css">
</head>
<body>
<!-- 定义一个标题, 标题内容:【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章 -->
<h1>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</h1>
<!-- 定义一个超链接,里面展示,央视网 -->
<!-- a 超链接标签:
href 属性:超链接地址
target 属性:超链接打开方式
_self当前窗口打开
_blank新窗口打开
默认为_self
-->
<a href="https://www.cctv.com/" target="_blank">央视网</a>
<!-- 方式一:行内样式 -->
<!-- <span style="color: gray;">2024年05月15日 20:07</span> -->
<span>2024年05月15日 20:07</span>
<!-- <span>000000</span> -->
</body>
</html>

View File

@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</title>
<!-- 方式二:内部样式 -->
<style>
/* 元素选择器 */
/* span{
color: gray;
} */
/* 类选择器 */
/* .cls{
color: #b2b2b2;
} */
/* id选择器 */
#time{
color: red;
}
</style>
<!-- 方式三:外部样式 -->
<!-- <link rel="stylesheet" href="css/news.css"> -->
</head>
<body>
<!-- 定义一个标题, 标题内容:【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章 -->
<h1>【新思想引领新征程】推进长江十年禁渔 谱写长江大保护新篇章</h1>
<!-- 定义一个超链接,里面展示,央视网 -->
<!-- a 超链接标签:
href 属性:超链接地址
target 属性:超链接打开方式
_self当前窗口打开
_blank新窗口打开
默认为_self
-->
<a href="https://www.cctv.com/" target="_blank">央视网</a>
<!-- 方式一:行内样式 -->
<!-- <span style="color: gray;">2024年05月15日 20:07</span> -->
<span class="cls" id="time">2024年05月15日 20:07</span>
<span>000000</span>
</body>
</html>

Binary file not shown.

View File

@@ -0,0 +1,13 @@
span {
/* color: gray; */
/* rgb表示法 */
/* color: rgb(255, 0, 0); */
/* rgba表示法 */
/* color: rgba(255, 0, 0, 0.5); */
/* 16进制表示法 */
/* color: #0000ff; */
color: #00f;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.