作用:定义页面上有什么元素
+类比:房子的结构草图(墙、门、窗在哪里)
+<button>点我</button>
+<h1>标题</h1>
+<img src="photo.png">
+ 作用:控制元素长什么样
+类比:房子的装修(颜色、材质、布局)
+button {
+ background: blue;
+ color: white;
+ border-radius: 8px;
+}
+ 作用:让页面动起来
+类比:房子的电路开关(点击后的响应)
+button.onclick = () => {
+ alert('你点了我!')
+}
+