继续回到我们的博客项目!让我们创建 “我的技能” 模块,这是一个无序的语言列表。
提醒:创建无序列表,要使用 <ul> 标签,其中每个列表项由 <li> 标签表示。
实例
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
< title >我的博客</ title >
< link href = "https://www.w3cschool.cn/statics/demosource/myblog/myblog.css" rel = "stylesheet" type = "text/css" />
</ head >
< body >
< div class = "section" >
< h2 >< span >我的技能</ span ></ h2 >
< ul >
< li >HTML</ li >
< li >CSS</ li >
< li >JavaScript</ li >
</ ul >
</ div >
</ body >
</ html >
|