0
点赞
收藏
分享

微信扫一扫

css第3天

大明宫 2022-03-11 阅读 55
css
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<!--<link rel="stylesheet" href="css/span.css" />-->
		<style>
			/*div{color: chartreuse; font-size: 30px; font-family: "黑体";}*/
			h1{color: crimson; font-family: "微软雅黑"; font-size: 100px;}
			textarea{color: darkkhaki; font-size: 40px; font-family:courier}
			#h2,#h3,#h4{color: darkkhaki; font-size: 40px; font-family:courier}
			.2{color: darkkhaki; font-size: 40px; font-family:courier}
			/*id>class>标签名*/
		</style>
		<title></title>
	</head>
	<body>
		<span id="#1" class="2">
			bifhnweifhweiofjweiohfiowehfjikwefiwbeiofwioegjhiowegjiwe
		</span>
		<div>
			fnjiqehgoiqehgoiqejgoiwhgiojwkofnqweklfnqefklnwevosjovwj
			<h1>
				heiofjaeogujoieajbgoseiboseiohewiophewiophwe
			</h1>
		</div>
		<p style="color: aquamarine"; font-size: 20px; font-family: '楷体';>
			fjweiojgfeiojgioewjgoijoiejgoiweejgoisejgoiewjgio
		</p>
		<em>
		<textarea rows="10" cols="10" style="color: #7FFF00;">
			fjweiofjwiojgoiwehjgoiwehgiowehgio
		</textarea></em> 
		<div id="h2">123</div>
		<div id="h3">456</div>
		<div id="h4">789</div>
	</body>
</html>
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style>
			#baidu{font-size: 500px; color: #FFFF00;}
			#baidu:hover{background-image: url(img/d53f8794a4c27d1ed21bc3a9f79fba6eddc451da9201.jpg); color: white;}
			#baidu:visited{color: white;}
			#taobao:hover{color: #FFFF00;}
			#taobao:active{color: crimson;}
		</style>
	</head>
	<body>
		<div>
			<a href="https://www.baidu.com/" id="baidu">
				<img src="img/21a4462309f790526471471f00f3d7ca7bcbd5a1.png" height="1000px" width="1000px">
			</a>
		</div>
		<div>
			<a href="https://www.taobao.com/" id="taobao" target="_blank">
					<font style="font-size: 300px;">淘宝网</font>
			</a>
		</div>
	</body>
</html>
举报

相关推荐

0 条评论