Files

24 lines
559 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 实验一 网页开发基础
## 实验目标
开发一个这样的网页
![image-20250226153311043](README.assets/image-20250226153311043.png)
## 项目结构
```bash
.
├── assets # 存放网页资源文件
│   └── navbar # 导航栏的资源文件
│   ├── cart.svg # 购物车图标的矢量图
│   └── search.svg # 搜索图标的矢量图
├── index.css
├── index.html
├── README.assets # README.md中的资源文件
│   └── image-20250226153311043.png
└── README.MD
```