37 lines
808 B
HTML
37 lines
808 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="menu">
|
|
<a href="hemp_hum_first_info.html" target="content_frame1" class="menu_item">大棚1</a>
|
|
<a href="hemp_hum_second2_info.html" target="content_frame1" class="menu_item">大棚2</a>
|
|
</div>
|
|
<div class="content">
|
|
<iframe name="content_frame1" width="100%" height="100%"></iframe>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |