学习网址:【优极限】 HTML+CSS+JavaScript+jQuery前端必学教程,小白教学,前端基础全套完成版_哔哩哔哩_bilibili
1.笔记网址
hbuilder第一次培训笔记(注:红色字的是注释笔记) - 幕布
2.基础操作
?
3.hml基本框架
?<!DOCTYPE html> <html> ?? ?<head> ?? ??? ?<meta charset="utf-8" /> ?? ??? ?<title>郑州轻工业大学欢饮您</title> ?? ?</head> ?? ?<body> ?? ??? ?<img src="img/20220204_231438.jpg" width="1500" height="100" /> ?? ??? ?<img src="http://p3.ssl.qhimgs1.com/sdr/400__/t0149a1861f52280ee9.jpg" width="50" height="50" align="left"/> ?? ??? ?<table align="right"> ?? ??? ??? ?<tr> ?? ??? ??? ??? ?<td>教工</td> ?? ??? ??? ??? ?<td>学生</td> ?? ??? ??? ??? ?<td>考生</td> ?? ??? ??? ??? ?<td>校园</td> ?? ??? ??? ??? ?<td>English</td> ?? ??? ??? ?</tr> ?? ??? ?</table> ?? ??? ? ?? ??? ?<table align="center"> ?? ??? ??? ?<tr> ?? ??? ??? ??? ?<pre> ?? ??? ??? ??? ?<th>网站首页</th> ?? ??? ??? ??? ?<th>学校概况</th> ?? ??? ??? ??? ?<th>机构设置</th> ?? ??? ??? ??? ?<th>师资队伍</th> ?? ??? ??? ??? ?<th>人才培养</th> ?? ??? ??? ??? ?<th>学术研究</th> ?? ??? ??? ??? ?<th>招生与就业</th> ?? ??? ??? ??? ?<th>合作交流</th> ?? ??? ??? ??? ?<th>校园文化</th> ?? ??? ??? ??? ?</pre> ?? ??? ??? ?</tr> ?? ??? ?</table> ?? ??? ?<img src="img/01060869-bdce-43eb-b314-50710470d325.jpg" width="1500" height="400"/> ?? ??? ?<a href="http://news.zzuli.edu.cn/" target="_blank">进入新闻网<<<</a> ?? ?</body> </html>
|