-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (106 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" />
<title>Developer: Chemscn</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link href="./styles/global.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<body>
<div class="container col-md-4">
<h1>Current Applications</h1>
<div class="card-deck">
<div class="card">
<img
height="400"
width="400"
class="card-img-top"
src="assets/icon.png"
alt="RickFinderzz Logo"
/>
<div class="card-body">
<h5 class="card-title">RickFinderzz</h5>
<p class="card-text">
The first app that lets you learn about your favorite Rick and
Morty © characters. Provides a robust search feature which
allows you to search for characters, locations and episodes.
</p>
</div>
<div class="card-footer">
Get on Apple Store
<a href="https://apps.apple.com/us/app/rickfinderzz/id1550450607"
>here</a
>
<br />
Get on Google Play Store
<a
href="https://play.google.com/store/apps/details?id=com.chemscn.RMExplorer"
>here</a
>
</div>
</div>
</div>
</div>
<div class="container">
<h1>Upcoming Applications</h1>
<div class="card-deck">
<div class="card">
<img
height="400"
width="400"
class="card-img-top"
src="https://cdn.pixabay.com/photo/2017/07/31/18/36/coffee-2559854_960_720.jpg"
alt="Cornerstone Coffee Image"
/>
<div class="card-body">
<h5 class="card-title">Cornerstone Coffee</h5>
<p class="card-text">A Mobile app for a local coffee shop.</p>
</div>
<div class="card-footer">Coming Soon!</div>
</div>
<div class="card">
<img
class="card-img-top"
height="400"
width="400"
src="https://cdn.pixabay.com/photo/2016/06/26/23/51/bottle-1481599_960_720.jpg"
alt="ChemHelper Image"
/>
<div class="card-body">
<h5 class="card-title">ChemHelper</h5>
<p class="card-text">
An app that helps students with chemistry, calculations, and
concepts.
</p>
</div>
<div class="card-footer">Coming Soon!</div>
</div>
</div>
</div>
<div class="container">
<footer>
<p>
<a href="mailto:chemdev233@gmail.com"
>Email Me: chemdev233@gmail.com</a
>
</p>
<p>
Copyright ©
<script>
document.write(new Date().getFullYear());
</script>
Diyar Karim All Rights Reserved
</p>
</footer>
</div>
</body>
</html>