HTMLを使ってWebページを作る

目次

述べる

 HTMLの紹介

CSSの紹介

効果は以下の通りです

部分的なスクリーンショット

 Index.html の内容

 Index.css の内容

絵の一部

要約する

述べる

        作るときに比率を気にしなかったので105%の比率で作りました。

 HTMLの紹介

        HTML の正式名称はHypertext Markup Languageで、マークアップ言語です。これには一連のタグが含まれています。これらのタグにより、ネットワーク上の文書形式を統一し、散在するインターネットリソースを論理的な全体に接続することができます。HTML テキストは、テキストグラフィックアニメーションサウンドリンクなどを説明できるHTML コマンドで構成される説明テキストです。[1] 

        ハイパーテキストは情報を整理する方法の 1 つであり、ハイパーリンクを通じてテキスト内のテキスト、グラフィックス、その他の情報メディアを関連付けます。これらの相互に関連する情報メディアは、同じテキスト内にある場合もあれば、別のファイルである場合や、地理的に離れたコンピュータ上のファイルである場合もあります。このように情報を整理することで、さまざまな場所に分散した情報リソースがランダムに接続され、人々が情報を検索したり取得したりする際に便利になります。

CSSの紹介

        カスケード スタイル シート (英語の正式名: Cascading Style Sheets) は、HTML (標準一般化マークアップ言語のアプリケーション) やXML (標準化一般化マークアップ言語のサブセット) などのファイル スタイルを表すために使用されるコンピューター言語です。CSS は、Web ページを静的に変更するだけでなく、さまざまなスクリプト言語を使用して Web ページの要素を動的にフォーマットすることもできます。 

        CSS は、Web ページ内の要素の位置の組版をピクセル レベルで正確に制御でき、ほぼすべてのフォント サイズとスタイルをサポートし、Web ページのオブジェクトとモデル スタイルを編集する機能を備えています。 

効果は以下の通りです

部分的なスクリーンショット

 

 Index.html の内容

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>天天生鲜</title>
		<link href="css/index1.css" rel="stylesheet">
	</head>
	<body>
		<header>
			<div>
				<div class="body">
					<label>欢迎来到天天生鲜</label>
					<span>
						<span>欢迎您:</span>
						<span>张三</span>
						<a id="a1">我的购物车</a>
						<a id="a2">我的订单</a>
					</span>
				</div>
			</div>
			<div class="body" id="logo">
				<img src="images/logo.png">
				<div id="search">
					<input placeholder="搜索"><button>搜索</button>
				</div>
				<div id="mycart">
					<span>我的购物车</span><label>0</label>
				</div>
			</div>
		</header>
		<main>
			<div id="s1">
				<span>全部商品分类</span>
				<span>首页</span>|
				<span>手机生鲜</span>|
				<span>抽奖</span>
			</div>
			<div id="s2"><span></span></div>
			
			<div id="s3">
				<div id="s4">
					<span>新鲜水果</span>
					<span>新鲜水果</span>
					<span>新鲜水果</span>
					<span>新鲜水果</span>
					<span>新鲜水果</span>
					<span>新鲜水果</span>
				</div>
				<div id="s5">
					<img src="images/slider.jpg">
					<div>
						<img src="images/right01.jpg">
						<img src="images/right02.jpg">
					</div>
				</div>
			</div>
			<div id="s6">
				<span>海鲜水产</span>|
				<span>深海鲤鱼</span>
				<span>帝王蟹</span>
			</div>
			<div id="s7"><span></span></div>
			<div id="s8">
				<img src="images/fish.jpg">
				<div class="s9">
					<span>基围虾</span>
					<img alt="" src="images/daxia.jpg">
					<span>¥39.9</span>
				</div>
				<div class="s9">
					<span>基围虾</span>
					<img alt="" src="images/daxia.jpg">
					<span>¥39.9</span>
				</div>
				<div class="s9">
					<span>基围虾</span>
					<img alt="" src="images/daxia.jpg">
					<span>¥39.9</span>
				</div>
				<div class="s9">
					<span>基围虾</span>
					<img alt="" src="images/daxia.jpg">
					<span>¥39.9</span>
				</div>
				
			</div>
			
		</main>
		
	</body>
</html>

 

 Index.css の内容



@charset "UTF-8";
*{
	
	padding:0px;
	margin:0px;
	font-family: 宋体;
	color:#999;
}

.body{
	width:1200px;
	margin:auto;
}
header>div:nth-child(1){
	background-color: #F6F6F6;
	padding:0.5em opx;
	border: 1px #aaa solid;
}
header>div:nth-child(1)>div{
	display:flex;
	justify-content: space-between;
}
header>div:nth-child(1)>div{
	font-weight:bold;
}

/***********************  ****/
.body>span>span:nth-child(2){
	color:#ff8040;
}

#a1{
	color:#0000ff;
}
#a2{
	color:#0000ff;
}


/******logo 框 我的购物车*******************************/
#logo{
	display:flex;
	justify-content: space-between;
	align-content: center;
	padding: 30px 0px 20px 20px;
}
#search>input{
	width:250px;
	height:30px;
	background-image:url(../images/search.png);
	background-position: 10px center;
	background-repeat:no-repeat;
	text-indent: 40px;/*文字缩进*/
	border: 2px green solid; 
}

#search>button{
	width:80px;
	height:34px;
	background-color: green;
	border: 2px green solid;
	color:#fff
	
}
#mycart>span{
	display:inline-block;
	width:150px;
	height: 32px;
	background-image: url(../images/buycar.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	text-indent: 40px;
	border: 1px #999 solid;
	line-height: 32px;
	text-align: center;
	
	
}
#mycart>label{
	display: inline-block;
	width:30px;
	height:30px;
	background-color: #FE8700;
	border: 2px #FE8700 solid;
	color:#fff;
	line-height: 30px;
	text-align: center;
	
}
#search{
	margin:20px;
}
#mycart{
	margin:20px;
}



/************************************/
main{
	width: 1800px;
	height:auto;
}

#s1>span:nth-child(1) {
	display: inline-block;
	text-align: left;
	padding:0px 50px;
	height:50px;
	line-height: 50px;
	margin-left: 150px;
	border-bottom: 2px #00ff00 solid;
	background-color: #00ff00;
}
#s1>span:nth-child(2),#s1>span:nth-child(3),#s1>span:nth-child(4){
	display: inline-block;
	padding:0px 20px;
}
#s2>span{
	display:block;
	width:1500px;
	height:0px;
	border-bottom: 2px #00ff00 solid;
}
/********************************/
#s3{
	display: flex;
	
}
#s4{
	width:347px;
	
}
#s4>span{
	width:200px;
	display:inline-block;
	text-align:center;
	margin:0px 0px;
	margin-left: 150px;
	border-bottom: 1px #eee solid;
	border-left:1px #eee solid;
	height: auto;
	padding: 11.5px 0px;
	background-image: url("../images/icon01.png");
	background-repeat: no-repeat;
}
#s4>span:nth-child(2){
	background-image: url("../images/icon02.png");
}
#s4>span:nth-child(3){
	background-image: url("../images/icon03.png");
}
#s4>span:nth-child(4){
	background-image: url("../images/icon05.png");
}
#s4>span:nth-child(5){
	background-image: url("../images/icon05.png");
}
#s4>span:nth-child(6){
	background-image: url("../images/icon06.png");
}
#s5{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#s5>div{
	width: 300px;
}
#s5>div>img{
	display: block;
}
#s6{
	width:347px;
	text-align: right;
}
#s6>span{
	font-size: 0.5em;
}
#s6>span:nth-child(1) {
	color: #00ff00;
	font-size: 1.25em;
	margin-right: 30px;
	
}
#s7>span{
	display:block;
	width:1200px;
	height:0px;
	margin-left:149px;
	border-bottom: 2px #00ff00 solid;
}
#s8{
	height:500px;
}
#s8>img{
	float:left;
	margin-left: 148px;
}
.s9{
	width:246.5px;
	display: inline-block;
	height: 300px;
	box-sizing: border-box;
	border-right:1px #eee solid;
	border-bottom:1px #eee solid;
	text-align: center;
}
.s9>span{
	text-align:center;
	display: inline-block;
	width:180px;
	height:40px;
	padding: 18px 0px;
}
.s9>span:nth-child(3) {
	padding:0px;
	border: 20px;
	
	height:37px;
	font-size: 1.5em;
	color: red;
}











絵の一部

要約する

        コードは非常に単純ですが、デバッグは非常に面倒です

おすすめ

転載: blog.csdn.net/qq_59384418/article/details/125481238