-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
164 lines (150 loc) · 4.9 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#3367D6" />
<meta
name="description"
content="An app to know all mobile numbers easily and allows you import and save frequently used ones"
/>
<!-- --FACEBOOK-->
<meta property="og:title" content="Know my number - 💙Appheart" />
<meta
property="og:description"
content="An app to know all mobile numbers easily and allows you import and save frequently used ones"
/>
<meta
property="og:image"
content="https://knowmynumber.netlify.app/assets/images/Layer%201.png"
/>
<title>Know my number - 💙Appheart</title>
<!-- FAVICONS -->
<link
rel="shortcut icon"
href="/assets/favicons/favicon.ico"
type="image/x-icon"
/>
<!-- MATERIAL ICONS -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap"
rel="stylesheet"
/>
<!-- MANIFEST -->
<link rel="manifest" href="/manifest.json" />
<link rel="manifest" href="/manifest.webmanifest" />
<!-- ios Support -->
<link rel="stylesheet" href="/assets/favicons/touch/Icon-96_x_96.png" />
<meta name="apple-mobile-web-app-status-bar" content="#676677" />
<!-- STYLESHEET -->
<link rel="stylesheet" href="./src/css/style.css" />
</head>
<body class="main-wrapper">
<header>
<div class="logo" onclick="location.href='./index.html'">
Know My Number
</div>
<div class="">
<div class="slotControl"><i class="material-icons">add</i></div>
<div class="menu-toggle"><i class="material-icons">menu</i></div>
</div>
</header>
<main>
<div class="section stored-numbers">
<h3>You have not stored any number here...</h3>
<button class="open-modal">4 Slots remaining</button>
</div>
<div class="section">
<!-- <div class="section__title">SEND AIRTIME</div> -->
<div class="">
<p>
Choose Network provider <i class="material-icons">expand_more</i>
</p>
<ul class="networks">
<li class="network">
<a href="tel: %2A 663 %23">
<div class="img__container">
<img src="./assets/images/mtn.png" alt="" />
</div>
</a>
</li>
<li class="network">
<a href="tel:1244">
<div class="img__container">
<img src="./assets/images/glo.jfif" alt="" />
</div>
</a>
</li>
<li class="network">
<a href="tel: %2A 121 %2A 3 %2A 4 %23">
<div class="img__container">
<img src="/assets/images/airtel.png" alt="" />
</div>
</a>
</li>
<li class="network">
<a href="tel: %2A 248 %23">
<div class="img__container">
<img src="/assets/images/9mobile.png" alt="" />
</div>
</a>
</li>
</ul>
</div>
</div>
<div class="slot">
<div class="slot-content">
<div class="toFullScreen">
<i class="material-icons">fullscreen</i>
</div>
</div>
<button>Add a number</button>
</div>
</main>
<!-- NAVIGATION -->
<nav>
<div class="close-nav menu-toggle"></div>
<ul>
<li>
<a href="#"><i class="material-icons">add</i> Add Subscribed App</a>
</li>
<li>
<a href="https://t.me/joinchat/r9sW19VN3wY1YWI0" target="_blank"
><i class="material-sicons">question_answer</i> Feedback</a
>
</li>
<li>
<a href="#"><i class="material-icons">share</i> Share</a>
</li>
<li>
<a href="./support.html"
><i class="material-icons">volunteer_activism</i> Support Us</a
>
</li>
</ul>
</nav>
<footer>
Developed by <img src="./assets/images/Layer1.png" alt="" />
</footer>
<div class="modal">
<div class="modal-popup">
<i class="material-icons close-modal">close</i>
<h2>We appreciate you..</h2>
<p>Thank you for choosing mobileng</p>
<input type="submit" value="Continue" class="close-modal" />
</div>
</div>
<!-- Custom JS -->
<script src="/src/js/setup.js"></script>
<script src="/src/js/imports.js"></script>
<!-- Service Workers -->
<script src="/sw.js"></script>
</body>
</html>