-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (106 loc) · 5.23 KB
/
index.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="author" content="Technaplex" />
<title>Technaplex | Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_TRACKING_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-135271107-1');
</script>
<!-- CSS styles -->
<link href="assets/css/bootstrap-grid.css" rel="stylesheet" />
<link href="assets/card.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="assets/custom.css" rel="stylesheet" />
<!-- Javascript -->
<script src="assets/js/jquery-3.3.1.js"></script>
<script src="assets/js/main.js"></script>
<script type="text/javascript">
//scroll to top of page
window.onbeforeunload = function() {
window.scrollTo(0, 0);
}
//arrow click
$(document).ready(function() {
$('#down').on('click', function() {
$("html").scrollTop(0);
$('html, body').animate({
scrollTop: $(".main").offset().top
}, 1000);
});
});
</script>
</head>
<body>
<header id="splash">
<h1 class="text-center splash-light">Welcome to Technaplex</h1>
<p class="text-center splash-dim">Tomorrow's technology today</p>
<span id="down">↓</span>
</header>
<nav id="site-header">
<div class="site-header-toprow">
<a class="site-logo" href="index.html">
<img id="site-logo-obj" src="assets/navlogo.jpg" />
</a>
<nav id="site-nav">
<a href="#" class="menu-icon"><i class="fas fa-bars"></i></a>
<div class="site-nav-wrapper">
<a href="#" class="active">Home</a>
<a href="https://quizdbmobile.technaplex.com">QuizDB for iOS</a>
<a href="https://flashcard.technaplex.com">Flashcard Adder</a>
<a href="pages/contact.html">Contact Us</a>
</div>
</nav>
</div>
</nav>
<div id="body" class="main">
<section class="light body-section">
<div class="container">
<div class="row subheading text-center">
<h2 class="section-header text-center">Our Apps</h2>
</div>
<div class="row text-center">
<div class="col-md-4">
<h3 class="app-title text-center"><a href="https://quizdbmobile.technaplex.com" class="text-muted text-center">QuizDB</a></h3>
<a href="https://quizdbmobile.technaplex.com" class="text-muted text-center"><img class="app-image" src="/assets/quizdb.png" alt="QuizDB for iOS" height="150" width="150"></a>
<p class="text-muted text-center">An innovative mobile client for the QuizDB searchable question database.</p>
</div>
<div class="col-md-4">
<h3 class="app-title text-center"><a href="https://flashcard.technaplex.com" class="text-muted text-center">Flashcard Adder</a></h3>
<a href="https://flashcard.technaplex.com" class="text-muted text-center"><img class="app-image" src="/assets/flashcard.png" alt="Flashcard Adder for iOS" height="150" width="150"></a>
<p class="text-muted">Flashcard Adder is a dedicated tool for adding flashcards into the AnkiMobile app.</p>
</div>
<div class="col-md-4">
<h3 class="app-title text-center">Saga Reader</h3>
<img class="app-image" src="/assets/question_mark.jpg" alt="Saga Reader" height="150" width="150">
<p class="text-muted">A better mobile reading experience in development, featuring auto-scrolling and reading statistics. Currently in development.</p>
</div>
</div>
</div>
</section>
<section class="dark text-center" id="footer">
<div class="dark container">
<div class="dark row text-center">
<div class="dark col-sm-6">
<a href="pages/legal.html" class="text-muted text-center">Legal</a>
</div>
<div class="dark col-sm-6">
<a href="pages/privacy.html" class="text-muted">Privacy Policy</a>
</div>
</div>
<div class="dark row text-center">
</div>
</div>
<p> © 2018-2020 Technaplex</p>
</section>
</div>
</body></html>