This repository was archived by the owner on Mar 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomputerbasics.php
More file actions
executable file
·44 lines (38 loc) · 1.71 KB
/
computerbasics.php
File metadata and controls
executable file
·44 lines (38 loc) · 1.71 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
<!doctype html>
<html class="no-js" lang="en">
<?php $pageTitle="Course Modules" ; include( "inc/head.php"); ?>
<body>
<?php include( "inc/header.php"); ?>
<div class="row panel">
<div id="reveal">
<!-- Triggers the modals -->
<a href="#" data-reveal-id="vidModal" class="radius button medium-6 columns">Mouse Basics…</a>
<a href="#" data-reveal-id="vid2Modal" class="radius button medium-6 columns">Keyboard Basics…</a>
<a href="#" data-reveal-id="#" class="radius button medium-6 columns">Mouse Games Coming Soon…</a>
<a href="#" data-reveal-id="#" class="radius button medium-6 columns">Keyboard Games Coming Soon…</a>
</div>
</div>
<!-- Begin Video Modal -->
<div class="main-modal">
<div id="vidModal" class="reveal-modal row" data-reveal aria-labelledby="firstModalTitle" aria-hidden="true" role="dialog">
<h3>Mouse Tutorial - Play</h3>
<div class="flex-video widescreen">
<iframe src="http://www.gcflearnfree.org/computers/mousetutorial/play" frameborder="0" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<div id="vid2Modal" class="reveal-modal" data-reveal aria-labelledby="firstModalTitle" aria-hidden="true" role="dialog">
<h3>Keyboard Tutorial - Play</h3>
<div class="flex-video widescreen">
<iframe src="http://www.gcflearnfree.org/typing/play" frameborder="0" allowfullscreen></iframe>
</div>
<a class="close-reveal-modal">×</a>
</div>
<!-- Reveal Modals end -->
</div>
<?php
include("inc/footer.php");
include("inc/script.php");
?>
</body>
</html>