
1.HTML1.1标题分级从一级到六级最低六级例如h1hallo world/h1 h2hallo world/h2 h3hallo world/h3 h4hallo world/h4 h5hallo world/h5 h6hallo world/h61.2用法p 表示文本的一个段落。 br 表示换行。 hr 分割线。1.3图像img src屏幕截图 2026-05-08 190031.png height1057 width2011 alt照片/多种调用方式/“”./“”…/“”1.4超链接pa hrefhttps://www.baidu.com/ target_self网址/a/p1.5列表标签ul li1/li li2/li li3/li /ul1.6列表标签语义标签语义说明无序列表用于创建一个无序列表其中每个列表项都由一个圆点符号标识有序列表用于创建一个有序列表其中每个列表项都由一个数字或字母标识列表项用于定义列表中的一个列表项定义列表用于创建一个定义列表其中每个列表项由一个术语和一个定义组成定义术语用于定义定义列表中的一个术语定义描述用于定义定义列表中术语的定义可折叠内容用于创建一个可折叠的区域其中包含详细信息折叠摘要用于定义 元素的摘要或标题1.7表格!DOCTYPE html html langen head meta charsetUTF-8 titleTitle/title style table { margin: 100px auto; width: 800px; font-size: 16px; border-collapse: collapse; } caption { padding: 12px; caption-side: top; border: 1px solid #323232; color: turquoise; background-color: rgb(36, 36, 36); } code { margin: 0 3px; padding: 3px 5px; border-radius: 4px; color: rgb(170, 200, 228); background-color: #2F2F2F; } th, td, th { padding: 13px; text-align: center; border: 1px solid #323232; color: rgba(255, 255, 255, 0.75); } th { color: #42D392; background-color: rgb(26, 26, 26); } tr:nth-of-type(even) { background-color: rgb(26, 26, 26); } tr:nth-of-type(odd) { background-color: rgb(36, 36, 36); } /style /head body table caption学生成绩表/caption thead tr th姓名/th th科目/th th成绩/th /tr /thead tbody tr tdcode李/code/td tdcode数学/code/td tdcode90/code/td /tr /tbody /table /body /html1.8文字属性style h1{ font-size: 16px; font-weight: normal; color: red; text-align: center; text-indent: 2rem; text-decoration: line-through; text-shadow: 15px 15px 1px red; } /style body PHello World/P p你好/p h1Hello World/h1 h1你好/h1 /body1.9页面设计style body{ margin: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; background-color: pink; } header,footer { width: 100%; height: 60px; background-color: red; } main { width: 80%; height: 100%; background-color: green; } /style /head body header1/header main2/main footer3/footer /body22.1用户需求2.2做项目需要三端服务端service客户端(app)管理端(admin)。服务端链接数据库将内容保存在数据库里面让app端调用。客户端不能有管理端的权限。联调d12322.1用户需求2.2做项目需要三端服务端service客户端(app)管理端(admin)。服务端链接数据库将内容保存在数据库里面让app端调用。客户端不能有管理端的权限。联调