HTML簡單後臺界面基礎+跳轉簡單商城界面

總共分五個文件
images圖片就不放上來了,明白原理即可

後臺主頁框架

<html>
	<head>
		<title>Home</title>
		<meta charset="utf-8">
	</head>
	
	<frameset rows="20%,*">
		
		<frameset cols="20%,*">
			<frame></frame>
			<frame src="Title.html"></frame>
		</frameset>
		
		<frameset cols="20%,40%,*">
			<frame></frame>
			<frame src="register01.html" name="register"></frame>
			<frame src="register02.html" name="register"></frame>
		</frameset>

	</frameset>

</html>

後臺界面導航

<html>
	<head>
		<title>選項</title>
		<meta charset="utf-8">
	</head>
	
	<body>
		<a href="register01.html" target="register">登錄</a>
		<br>
		<a href="register02.html" target="register">註冊</a>
	</body>

</html>

後臺系統登錄界面

<html>
	<head>
		<title>
			用戶登錄界面
		</title>
		<meta charset="utf-8">
	</head>
	<body>
		
		<form action="shop.html" target="_black" align="center">
			<p>賬號:<input name="username" maxlength="10" placeholder="請輸入用戶名"></p>
			<p>密碼:<input type="password" name="pwd" placeholder="請輸入密碼"></p>
			
			<p>
				<input type="submit" value="登錄">
				<input type="hidden" name="id" value="100">
			</p>
		
		</form>
		
	</body>

</html>

後臺註冊界面

<html>
	<head>
		<title>
			用戶註冊界面
		</title>
		<meta charset="utf-8">
	</head>
	<body>

		<form action="register01.html" target="_black" align="center">
			<p>賬號:<input name="username" maxlength="10" placeholder="請輸入用戶名"></p>
			<p>密碼:<input type="password" name="pwd" placeholder="請輸入密碼"></p>
			<p>確認:<input type="password" name="rpwd" placeholder="請確認密碼"></p>
			<p>手機號:<input name="phone" maxlength="11" placeholder="請輸入十一位手機號"></p>
			
			<p>
				<input type="submit" value="登錄">
				<input type="reset" value="重置">
				<input type="hidden" name="id" value="100">

			</p>
		
		</form>
		
	</body>

</html>

商城界面

<html>
	<head>
		<meta charset="utf-8">
		<title>title</title>
	</head>
	
	<body bgcolor="red">
		<table align="center"><!-- 主體框架 五行一列 -->
			<tr><!-- 第一行 -->
				<td>
					<table cellpadding="0" cellspacing="0">
						<tr>
							<td><img src="images/header_logo1.png"></td>
							<td><img src="images/header_text1.png"></td>
							<td><img src="images/header_text2.png"></td>
						</tr>
					</table>
				</td>
			
			</tr>
			
			<tr><!-- 第二行 -->
				<td>
					<table cellpadding="0" cellspacing="0">
						<tr>
							<td>
								<img src="images/midleup.jpg" width="1352">
								<br>
								<br>
							</td>
						</tr>
					</table>
				</td>
			
			</tr>
			
			<tr><!-- 第三行 -->
				<td>
					<table bgcolor="blue" width="650" height="350" align="left" cellspacing="0">
						<tr>
							<td>
								<img src="images/left01.jpg" width="255" height="180">
								<img src="images/left02.jpg" width="125" height="180">
								<img src="images/left03.jpg" width="125" height="180">
								<img src="images/left04.jpg" width="125" height="180">
							</td>
						</tr>
						<tr>
							<td>
								<img src="images/left11.jpg" width="125" height="180">
								<img src="images/left12.jpg" width="125" height="180">
								<img src="images/left13.jpg" width="125" height="180">
								<img src="images/left14.jpg" width="125" height="180">
								<img src="images/left15.jpg" width="125" height="180">
							</td>
						</tr>
					</table>

					<table bgcolor="pink" width="650" height="350" align="right" cellspacing="0">
						<tr>
							<td>
								<img src="images/right01.jpg" width="255" height="180">
								<img src="images/right02.png" width="125" height="180">
								<img src="images/right03.png" width="125" height="180">
								<img src="images/right04.png" width="125" height="180">
							</td>
						</tr>
						<tr>
							<td>
								<img src="images/right11.png" width="125" height="180">
								<img src="images/right12.png" width="125" height="180">
								<img src="images/right13.png" width="125" height="180">
								<img src="images/right14.png" width="125" height="180">
								<img src="images/right15.png" width="125" height="180">
							</td>
						</tr>
					</table>
				</td>
			
			</tr>
			
			<tr><!-- 第四行 -->
				<td>
					<br>
					<img src="images/boom.jpg" width="1352">
				</td>
			
			</tr>
			
			<tr><!-- 第五行 -->
				<td>
				
				</td>
			
			</tr>
		
		</table>
	
	</body>

</html>

商場效果圖

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章