HTML css js implements Tab page sample code

HTML css js implements Tab page sample code

Copy code
The code is as follows:

<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<meta http-equiv="Content-Language" content="zh-CN" />
<meta name="roots" content="" />
<meta name="Keywords" content="" />
<meta name="Description" content="" />
<title></title>
<style type="text/css">
body{font:"宋体";font-size:12px;}
a:link,a:visited{font-size:12px;color:#666;text-decoration:none;}
a:hover{color:#ff0000;text-decoration:underline;}
#Tab{margin:0 auto;width:220px;border:1px solid #BCE2F3;}
.Menubox{height:28px;border-bottom:1px solid #64B8E4;background:#E4F2FB;}
.Menubox ul{list-style:none;margin:7px 40px;padding:0;position:absolute;}
.Menubox ul li{float:left;background:#64B8E4;line-height:20px;display:block;cursor:pointer;width:65px;text-align:center;color:#fff;font-weight:bold;border-top:1px solid #64B8E4;border-left:1px solid #64B8E4;border-right:1px solid #64B8E4;}
.Menubox ul li.hover{background:#fff;border-bottom:1px solid #fff;color:#147AB8;}
.Contentbox{clear:both;margin-top:0px;border-top:none;height:181px;padding-top:8px;height:100%;}
.Contentbox ul{list-style:none;margin:7px;padding:0;}
.Contentbox ul li{line-height:24px;border-bottom:1px dotted #ccc;}
</style>
<script>
<!--
function setTab(name,cursel,n){
for(i=1;i<=n;i++){
var menu=document.getElementById(name+i);
var con = document.getElementById("con_"+name+"_"+i);
menu.className=i==cursel?"hover":"";
con.style.display=i==cursel?"block":"none";
}
}
//-->
</script>
</head>
<body>


<div id="Tab">
<div class="Menubox">
<ul>
<li id="menu1" onmouseover="setTab('menu',1,2)" class="hover">Higher vocational colleges</li>
<li id="menu2" onmouseover="setTab('menu',2,2)" >Private schools</li>
</ul>
</div>
<div class="Contentbox">
<div id="con_menu_1" class="hover">
<ul>
<li>·<a href="#">Beijing Industrial Vocational and Technical College</a></li>
<li>·<a href="#">Beijing Vocational College of Finance and Trade</a></li>
<li>·<a href="#">Tianjin Vocational University</a></li>
<li>·<a href="#">Dalian Vocational and Technical College</a></li>
<li>·<a href="#">Liaoning Communications College</a></li>
<li>·<a href="#">Zhejiang Finance Vocational College</a></li>
<li>·<a href="#">Shandong Commercial Vocational and Technical College</a></li>
<li>·<a href="#">Ningbo Vocational and Technical College</a></li>
<li>·<a href="#">Wuhan Vocational and Technical College</a></li>
</ul>
</div>
<div id="con_menu_2" style="display:none">
<ul>
<li>·<a href="#">Jiangxi Lantian College</a></li>
<li>·<a href="#">Xi'an International Studies University</a></li>
<li>·<a href="#">Hunan University of International Business and Economics</a></li>
<li>·<a href="#">Xi'an Translation Institute</a></li>
<li>·<a href="#">Sanjiang College</a></li>
<li>·<a href="#">Beijing City University</a></li>
<li>·<a href="#">Huanghe Science and Technology College</a></li>
<li>·<a href="#">Jilin Huaqiao Foreign Languages ​​College</a></li>
<li>·<a href="#">Zhejiang Shuren University</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>

<<:  A brief discussion on MySQL user permission table

>>:  Serial and parallel operations in JavaScript

Recommend

Detailed tutorial on installing centos8 on VMware

CentOS official website address https://www.cento...

MySQL configuration master-slave server (one master and multiple slaves)

Table of contents Ideas Host Configuration Modify...

Summary of Mysql slow query operations

Mysql slow query explanation The MySQL slow query...

What is the function of !-- -- in HTML page style?

Mainly for low version browsers <!-- --> is ...

How to bind Docker container to external IP and port

Docker allows network services to be provided by ...

MySQL InnoDB MRR Optimization Guide

Preface MRR is the abbreviation of Multi-Range Re...

CSS Paint API: A CSS-like Drawing Board

1. Use Canvas images as CSS background images The...

Implementing timed page refresh or redirect based on meta

Use meta to implement timed refresh or jump of th...

Quickly solve the problem of slow Tomcat startup, super simple

Today I helped a classmate solve a problem - Tomc...

Introduction to HTML method of opening link files using hyperlinks

a and href attributes HTML uses <a> to repr...

Very practical Tomcat startup script implementation method

Preface There is a scenario where, for the sake o...

Detailed explanation of jQuery's copy object

<!DOCTYPE html> <html lang="en"...

Summary of the differences between get and post requests in Vue

The operating environment of this tutorial: Windo...

W3C Tutorial (4): W3C XHTML Activities

HTML is a hybrid language used for publishing on ...

MySQL and sqlyog installation tutorial with pictures and text

1. MySQL 1.1 MySQL installation mysql-5.5.27-winx...