CSS效果
暂时就先写着一个,以后有好玩的再写
卡片布局样式(css)
#id{
background: #fff;
padding: 1rem;
border-radius: 7px;
box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.13);
}
效果如下
body的背景css为 background: aliceblue;
自己感觉好看的字体(自己写的)
css
/*
font-family: 字体选择;
font-size: 字体大小;
font-weight: 字体粗细;
text-decoration: none;---下划线
font: bold 20px/50px "楷体"; --粗体 大小/行高 字体
p标签----color: 字体颜色;
font:oblique bolder 20px "楷体";--斜体 粗体 大小 字体
text-shadow: 颜色 偏移位置x y 模糊圆角;阴影
*/
body {
font-family: "Arial Black", 楷体;
}
h1 {
font-size: 50px;
text-shadow: #720ff3 5px 5px 20px;
}
p {
font-weight: bold;
color: rgb(0, 98, 255);
text-shadow: #f30f0f 5px 5px 20px;
}
/*默认调整*/
a {
color: black;
text-decoration: none;
font: oblique bolder 20px "楷体";
}
/*鼠标悬浮(只记住hover就行)*/
a:hover{
color: rgb(231, 46, 222);
font-size: 50px;
}
/*鼠标按下未释放
https://blog.csdn.net/qq_37567841?type=blog*/
a:active{
color: aquamarine;
}
html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>介绍页</title>
<link rel="stylesheet" href="你的CSS路径">
<style>
/*或者你把上面的css粘贴到这里玩*/
</style>
</head>
<body>
<h1>关于Me</h1>
<p class="p1"> 在校大学生的Html自学之路</p>
<p>安卓学习,java,js,css</p>
<p><a href="">我的博客</a></p>
<h3>当前目标</h3>
<li>
<p>完整的美化html</p>
<p>做一个浏览器主页</p>
<p>写个关于界面</p>
<p>完成我的CSDN博客</p>
</li>
<li>
<h>学会html网格布局</h>
</li>
<p>I have searched a thousand years,And I have cried a thousand tears. I found everything I need, You are everything to me.</p>
<h1>列表美化</h1>
<ul>
<li>小标签1 小标签2 小标签3 小标签4</li>
<li>小标签1 小标签2 小标签3 小标签4</li>
<li>小标签1 小标签2 小标签3 小标签4</li>
<li>小标签1 小标签2 小标签3 小标签4</li>
</ul>
</body>
</html>