当前位置: 移动技术网 > IT编程>网页制作>CSS > #WEB安全基础 : HTML/CSS | 0x8CSS进阶

#WEB安全基础 : HTML/CSS | 0x8CSS进阶

2019年01月17日  | 移动技术网IT编程  | 我要评论

你以为自己学这么点css就厉害了?

学点新东西吧,让你的网页更漂亮


我们只需要用到图片和网页

 

这是的代码

 1 <html>
 2 <head>
 3 <title>head first lounge</title>
 4 </head>
 5 <style>
 6 body{
 7 margin-left: 15%;
 8 margin-right: 15%;
 9 font-family: sans-serif;
10 padding: 10px 10px 10px 10px;
11 border: 3px solid green;
12 }
13 p.myp{
14 background-color: pink;
15 color: blue;
16 }
17 </style>
18 <body>
19 <h1>welcome to the head first lounge</h1>
20 <img src = "images/drinks.jpg" alt = "果汁" title = "果汁" width = "400" height = "200">
21 <p>join us any evening for refreshing elixirs, conversation and maybe a game of two of <em>dance revolution</em>wireless access is always provided;byows (brinf you web server).
22 </p>
23 <h2>directions</h2>
24 <p class = "myp">
25 you'll find us right in the center of downtown website. come join us!
26 </p>
27 </body>
28 </html>
29 <!--
30 background-color: pink;        <p>标签的背景颜色
31 -->

请看效果

 

我添加了元素的背景颜色,结合学过的class(类)自己试试能不能让它变得更漂亮


//本系列教程基于《head first html与css(第二版)》,此书国内各大购物网站皆可购买


转载请注明出处  by:m_zphr

最后修改日期:2019-01-17

 

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网