• HTML+CSS项目案例


    1、表格练习

    案例演示:(table、tr、td、th等)
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    		    <style>
    		        table{
    		            text-align: center;
    		            background-image: url("images/biaoge.jpg");
    		            color: blue;
    		        }
    		    style>
    	head>
    <body>
        <h1>成绩表h1>
        <table border="5px" width="600px" align="center" cellspacing="5px" >
            <tr>
                <th>学号th>
                <th>姓名th>
                <th>英语th>
                <th>数学th>
                <th>语文th>
            tr>
            <tr>
                <td>0001td>
                <td>王少飞td>
                <td>99td>
                <td>98td>
                <td>97td>
            tr>
            <tr>
                <td>0002td>
                <td>张芷若td>
                <td>96td>
                <td>97td>
                <td>97td>
            tr>
            <tr>
                <td>0003td>
                <td>周晓敏td>
                <td>96td>
                <td>91td>
                <td>95td>
            tr>
            <tr>
                <td>0004td>
                <td>李劲光td>
                <td>94td>
                <td>88td>
                <td>89td>
            tr>
            <tr>
                <td>0005td>
                <td>于静td>
                <td>78td>
                <td>88td>
                <td>100td>
            tr>
        table>
    body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61

    图片素材:
    请添加图片描述

    2、文本样式练习

    案例演示:(下标、上标、高亮等)
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
        <style>
            font{
                color: blue;
                background-color: rgba(255, 255, 0, 0.412);
            }
            p{
                line-height: 35px;
                text-indent: 2em;
            }
        style>
    	head>
    	<body>
    		<h1>青蒿素h1>
    		<p>本词条由<font>“科普中国”科学百科词条编写与应用工作项目审核font>p>
    		<p>青蒿素是从复合花序<font>植物黄花蒿茎叶font>中提取的有过氧基团的倍半菇内酯的一种无色针状晶体,其分子式为
    			C<sub>15sub>H<sub>22sub>O<sub>5sub>,由中国药学家<font>屠呦呦font>在1971年发现<font><sup>[1]sup>font>。
    			青蒿素是继<font>乙氨咤啶、氯喹、伯喹font>之后最有效的抗疟特效药,
    			尤其是对于<font>脑型疟疾font>和抗氯喹疟疾,具有速效和低毒的特点,曾被世界卫生组织称做是“世界上唯一有效的疟疾治疗药物”。
    			p>
    	body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    3、图片标签练习

    案例演示:(haspce、align)
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
        <style>
            img{
                width: 300px;
                height: 200px;
            }
            h3{
                text-decoration: underline;
                color: blue;
            }
        style>
    head>
    <body>
        <img src="images/libai.png" align="left" hspace="20px"/>
        <h1>静夜思h1>
        <h3>作者:李白h3>
        <p>床前明月光<br>
        疑是地上霜<br>
        举头望明月<br>
        低头思故乡<br>p>
        <p>赏析:此句写诗人睡梦初醒,迷离恍惚中将照射在床前的清冷月光误作铺在地面的浓霜,形容了月光的皎洁,又表达了季节的寒冷,还烘托出诗人飘泊他乡的孤寂凄凉之情。p>
    body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    图片素材:
    请添加图片描述

    4、盒子模型练习一

    案例演示:(虚线用盒子一个边框虚线表示)
    在这里插入图片描述

    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    		#container{
    			width: 250px;
    			height: 320px;
    			border: 1px solid gainsboro;
    			text-align: center;
    			margin: 0px auto;
    		}
    		p{
    			color: gainsboro;
    		}
    		#line{
    			border-top: 2px dashed gainsboro;
    		}
    	style>
    	<body>
    		<div id="container">
    			<h3>毕业季|再见青春h3>
    			<div id="line">div>
    			<p>36557人收听p>
    			<img src="images/music.jpg" >
    		div>
    	body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    图片素材:
    请添加图片描述

    5、盒子模型练习二

    案例演示:(盒子之间距离用margin控制)
    在这里插入图片描述

    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    		div{
    			width: 150px;
    			margin: 0px auto;
    		}
    		.d1{
    			height: 30px;
    			border: 1px solid black;
    			margin: 2px auto;
    			line-height: 30px;
    			text-indent: 1em;
    			font-weight: bold;
    		}
    	style>
    	<body>
    		<div id="container">
    			<img src="images/user.jpg" >
    			<div class="d1">用户姓名:div>
    			<div class="d1">学习进度:div>
    			<div class="d1">兴趣爱好:div>
    			<div class="d1">参与的群:div>
    		div>
    	body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    图片素材:
    请添加图片描述

    6、盒子模型练习三

    案例演示:(margin控制盒子位置)
    在这里插入图片描述

    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    	#container{
    		width: 816px;
    		height: 309px;
    		background-color: #000000;
    		margin: 0px auto;
    	}
    	#under{
    		height: 50px;
    		width: 816px;
    		background-color: #aaaa7f;
    		margin-top: -50px;
    	}
    	style>
    	<body>
    		<div id="container">
    		<img src="images/coffee.png" >
    			<div id="under">div>
    		div>				
    	body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    图片素材:

    请添加图片描述

    7、浮动练习

    案例演示:(hover、text-decoration等)
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    		<style type="text/css">
    			div{
    				width: 700px;
    				background-color: aqua;
    				margin: 0px auto;
    			}
    			a{
    				text-decoration:none;
    				color: white;
    				float: left;
    				width: 70px;
    				height: 35px;
    				background-color: red;
    				margin: 20px;
    				line-height: 35px;
    				text-align: center;
    			}
    			a:hover{
    				color: yellow;
    			}
    		style>
    	head>
    	<body>
    		<div class="">
    			<a href="#">首页a><a href="#">新闻动态a><a href="#">产品展示a>
    			<a href="#">加入我们a><a href="#">	联系我们a><a href="#">	相关链接a>
    		div>
    	body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    8、边框练习一

    案例演示:()
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    		<style type="text/css">
    			.div1,.div2{
    				width: 200px;
    				height: 30px;
    				border-bottom: 1px dashed  red;
    				display: inline-block;
    			}
    		style>
    	head>
    	<body>
    		用户名:
    		<div class="div1">div><br>码:
    		<div class="div2">div>
    	body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    9、边框练习二

    案例演示:
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    		.div1{
    			width: 300px;
    			height: 330px;
    			border:1px solid black ;
    			border-top: 5px solid orange;
    		}
    		.div2{
    			width: 100%;
    			border-top: 1px solid black;
    		}
    		h2,p{
    			margin-left: 15px;
    		}
    	style>
    	<body>
    		<div class="div1">
    				<h2>教程h2>
    			<div class="div2">
    				<p>初秋的天冰冷的夜p>
    				<p>回忆慢慢袭来p>
    				<p>真心的爱就像落叶p>
    				<p>为何却要分开p>
    				<p>灰色的天独自彷徨p>
    				<p>城市的老地方p>
    			div>
    		div>
    	body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36

    10、图文混排

    案例演示:
    在这里插入图片描述

    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    		.div{
    			width: 350px;
    			height: 150px;
    			margin: 0 auto;
    			border: 1px solid green;
    		}
    		.p2{
    			font-size: 13px;
    			margin-left: 10px;
    		}
    		.p1{
    			margin-left: 10px;
    			color: green;
    			font-weight: bold;
    		}
    		img{
    			width: 120px;
    			height: 150px;
    		}
    	style>
    	<body>
    		<div class="div">
    			<img src="img/man_r1_c2.jpg" align="right">
    			<p class="p1">谈华为的管道战略p>
    			<p class="p2">华为执行副总裁徐直军:华为致力于通过提升管道容量、增强管道使能、优化管道管理,使管道更宽、管道覆盖更广、客户体验更好。
    p>
    
    		div>
    	body>
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    11、列表练习

    案例演示:
    在这里插入图片描述
    实现代码:

    DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8">
    		<title>title>
    	head>
    	<style type="text/css">
    		.div{
    			width: 320px;
    			height: 190px;
    			border: 1px solid gainsboro;
    			border-top: 5px solid orange;
    			margin: 0 auto;
    		}
    		li{
    			list-style: none;
    			padding-left: 20px;
    			background-image: url(img/qipao.jpg);
    			background-repeat: no-repeat;
    			background-position: left;
    		}
    		a{
    			text-decoration: none;
    			font-size: 13px;
    			line-height: 25px;
    		}
    		h3{
    			margin-left: 15px;
    			line-height: 15px;
    		}
    		ul{
    			margin-left: -25px;
    		}
    		.a1{
    			color: orange;
    		}
    		.a2{
    			color: blue;
    		}
    /* 		a:link{color: black;}
    		a:visited{color: red;} */
    		a:hover{color: yellow;}
    		a:active{color: #00FFFF;}
    	style>
    	<body>
    		<div class="div">
    			<h3>公司状态h3>
    			<hr color="gainsboro">
    			<ul>
    				<li><a href="#"  class="a1">传智播客大型人才招聘会成功举行a>li>
    				<li><a href="#">设计免费公开课-授技数码照片图像精修技巧a>li>
    				<li><a href="#" class="a2">花再多钱也买不来的UI面试神器免费送啦a>li>
    				<li><a href="#">传智播客2014版全新IT入门教程光盘免费领a>li>
    			ul>
    		div>
    	body>
    html>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
  • 相关阅读:
    DeepPyramid:在白内障手术视频中实现金字塔视图和可变形金字塔接收的语义分割
    信息学奥赛一本通:1127:图像旋转
    湖北申报!2022年湖北省创新型产业集群申报条件、申报程序和考核评估
    springboot + layui + pageHepler 实现table 表格分页并且多行小计功能
    Navicat 与清华大学校企合作交流会圆满落幕
    操作系统终止进程
    隐私计算从AI到BI:隐语SCQL数据分析引擎上线
    微信
    字节流和字符流(即写文件)、FileOutputStream类
    计算机毕业设计之交互式大学英语学习平台
  • 原文地址:https://blog.csdn.net/qq_52108058/article/details/128120643