-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq1.html
56 lines (49 loc) · 1.25 KB
/
q1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Tech</title>
<style>
body {
margin: 0;
padding: 0;
}
#container {
display: flex;
height: 100vh;
}
#menu {
width: 20%;
background-color: #382383;
color: #9c9797;
padding: 90px;
box-sizing: border-box;
}
#content {
flex: 1;
padding: 20px;
box-sizing: border-box;
}
a {
color: #968080;
text-decoration: none;
display: block;
margin-bottom: 110px;
padding: 30px;
}
</style>
</head>
<body>
<div id="container">
<div id="menu">
<a href="https://domain_name/" target="contentFrame">1st HTML Box</a>
<a href="https://page_path" target="contentFrame">2nd HTML
Box</a>
</div>
<div id="content">
<iframe name="contentFrame" width="100%" height="100%"></iframe>
</div>
</div>
</body>
</html>