-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeographical_Time_Divisions.html
27 lines (27 loc) · 1.25 KB
/
Geographical_Time_Divisions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Geological Time Scale Drag and Drop Activity</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2>Match the Geological Time Units with Their Descriptions</h2>
<div id="timeUnits" class="container">
<div draggable="true" id="eon" class="draggable">EON</div>
<div draggable="true" id="era" class="draggable">ERA</div>
<div draggable="true" id="period" class="draggable">PERIOD</div>
<div draggable="true" id="epoch" class="draggable">EPOCH</div>
<div draggable="true" id="age" class="draggable">AGE</div>
</div>
<div id="descriptions" class="container">
<div id="desc1" class="dropzone">Duration of half a billion years or more</div>
<div id="desc2" class="dropzone">Duration of several hundred millions of years</div>
<div id="desc3" class="dropzone">Duration of hundreds of millions of years</div>
<div id="desc4" class="dropzone">Duration of Tens of Millions of years</div>
<div id="desc5" class="dropzone">Duration of Millions of years</div>
</div>
<script src="script.js"></script>
</body>
</html>