-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 2.53 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
<!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">
<title>working-with-apis-in-javascript</title>
<link id="favicon" rel="icon" href="https://cdn.onlinewebfonts.com/svg/img_184513.png" sizes="16x16" />
<!-- font-awesome library to make the
webpage more appealing -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="./styles/app.css" />
</head>
<body>
<div class="content">
<div class="advertisement" id="header">
<hr />
Submitted and coded by Jagadeesh Kumar . S, you may send mail to my email address which is
jagadeesh_2k17@proton.me and you may contribute some money to my Indian Unified Payment Interface (UPI)
which is jagadeesh-kumar@airtel .
<hr />
<br />
</div>
<div class="head">
<h1 id="head"></h1>
</div>
<div class="email">
<i class="fa fa-envelope" style="font-size: 15px; color: blue;"></i>
<a href="" id="email"> </a>
</div>
<div class="phone">
<i class="fa fa-phone" style="font-size: 15px; color: blue;"></i>
<a href="" id="phone"> </a>
</div>
<br />
<div id="user-img"></div>
<br />
<div class="details">
<table>
<tr>
<td>Age</td>
<td><span id="age"></span></td>
</tr>
<tr>
<td>Gender</td>
<td><span id="gender"></span></td>
</tr>
<tr>
<td>Location</td>
<td><span id="location"></span></td>
</tr>
<tr>
<td>Country</td>
<td><span id="country"></span></td>
</tr>
</table>
</div>
<div class="advertisement" id="header">
<br />
<hr />
Submitted and coded by Jagadeesh Kumar . S, you may send mail to my email address which is
jagadeesh_2k17@proton.me and you may contribute some money to my Indian Unified Payment Interface (UPI)
which is jagadeesh-kumar@airtel .
<hr />
</div>
</div>
<script src="./javascripts/app.js"></script>
</body>
</html>