-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 2.62 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Oxi's Silly Little Apps</title>
<meta name="description" content="A hub for my silly little projects.">
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="src/img/icon.png">
<link rel="icon" type="image/svg+xml"
href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-highlighter' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11.096.644a2 2 0 0 1 2.791.036l1.433 1.433a2 2 0 0 1 .035 2.791l-.413.435-8.07 8.995a.5.5 0 0 1-.372.166h-3a.5.5 0 0 1-.234-.058l-.412.412A.5.5 0 0 1 2.5 15h-2a.5.5 0 0 1-.354-.854l1.412-1.412A.5.5 0 0 1 1.5 12.5v-3a.5.5 0 0 1 .166-.372l8.995-8.07zm-.115 1.47L2.727 9.52l3.753 3.753 7.406-8.254zm3.585 2.17.064-.068a1 1 0 0 0-.017-1.396L13.18 1.387a1 1 0 0 0-1.396-.018l-.068.065zM5.293 13.5 2.5 10.707v1.586L3.707 13.5z'/%3E%3C/svg%3E">
</head>
<body>
<div class="ios-app">
<!-- iOS Navigation Bar -->
<nav class="ios-navbar">
<div class="nav-content">
</div>
</nav>
<main class="content-scroll">
<div class="ios-list-group">
<div class="ios-list-header">Apps</div>
<div class="ios-list">
<!-- Study Budy Cell -->
<a href="https://oxitorenk.github.io/study-buddy" class="ios-cell" target="_blank">
<div class="cell-content">
<span class="cell-label">Study Buddy</span>
<div class="cell-value">
<span>Random Quiz Generator</span>
<svg class="chevron" width="8" height="14" viewBox="0 0 8 14" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M1 13L7 7L1 1" />
</svg>
</div>
</div>
</a>
</div>
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>