`

basic html

 
阅读更多
<!doctype html>
<meta charset="uft-8"/>

html:
<!doctype html>
<html>
<head>
	<title>My First Website</title>
	<meta charset="uft-8"/>
	<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>

<body>
	<div id="main">
		<h1>My first Website</h1>

		<p>Welcome to my website! Here are some things I enjoy</p>

		<ul>
			<li>Web Development</li>
			<li>Chess</li>
			<li>Reading</li>
			<li>Leaming</li>
		</ul>

		<h2>Favorite Quotes</h2>


		<blockquote>
			<p>Here is a favorite quote of mine...</p>
		</blockquote>
		
		<blockquote>
			<p>...and another</p>
		</blockquote>
		

	</div><!-- end main -->
	
</body>
</html>


css:
body {
	background-color: #e3e3e3;
	font-weight: bold;
	font-family: Arial, "MS Trebuchet", sans-serif;
}


#main {
	width: 640px;
	margin: auto;
}

blockquote {
	border: 1px solid white;
	text-align: center;
	margin-left: 0;
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics