欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML之HTML5中新增强结构标签

程序员文章站 2022-05-28 09:01:56
...
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		
		<style>
			/*CSS内容*/
			
			header{
				height:80px;
				width:100%;
				/*背景颜色*/
				background-color: yellow;
			}
			
			nav{
				height:20px;
				width:100%;
				/*背景颜色*/
				background-color: green;
				
			}
			
			.center{
				height:400px;
				width:100%;
				/*背景颜色*/
				background-color: aqua;
			}
			
			footer{
				height:20px;
				width:100%;
				/*背景颜色*/
				background-color: chocolate;	
			}
			
			.login{
				
				height:350px;
				width:240px;
				/*背景颜色*/
				background-color: floralwhite;
				
				/*相对定位*/
				position: relative;
				left: 550px;
				top: 10px;
				
			}
		</style>
		
	</head>
	<body>
		<!--
        	作者:offline
        	时间:2019-12-24
        	描述:HTML5中新增强结构标签(了解即可)
        	(多数是使用div结构)
        	header:头部
        	nav:中间提示
        	footer:底部
        -->
		
		<!--头部模块-->
		<header ></header>
		<!--中间提示-->
		<nav ></nav>
		<!--中间的展现-->
		<div class="center">
			
			<div class="login"></div>
			
		</div>
		<!--底部模块-->
		<footer></footer>
		
		
	</body>
</html>

效果展示
HTML之HTML5中新增强结构标签

相关标签: 网页编程基础