-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (46 loc) · 1.49 KB
/
index.html
File metadata and controls
62 lines (46 loc) · 1.49 KB
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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>Tree wiki</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Overlock:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="title">
<h1>The Tree Encyclopedia</h1>
</div>
<div class="container">
<div class="index">
<h3>Index</h3>
<p><button id="oak">Oak</button></p>
<p><button id="beech">Beech</button></p>
</div>
<div class="content">
<iframe id="i_content" src="oak_content.html"
width="1000px"
>
</iframe>
</div>
<div class="summary">
<iframe id="i_summary" src="oak_summary.html">
</iframe>
</div>
</div>
</div>
<script>
$("#oak").click(function(){
$("#i_content").attr("src","oak_content.html");
$("#i_summary").attr("src","oak_summary.html");
})
$("#beech").click(function(){
})
/* This will not be merged ! */
</script>
</body>
</html>