-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (56 loc) · 2.74 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
<!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">
<!-- Primary Meta Tags -->
<title>Random User Generator</title>
<meta name="title" content="Random User Generator">
<meta name="description" content="It generates random user using a Random user API and written in Vue.js.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://drish-xd.is-a.dev/Random-user/">
<meta property="og:title" content="Random User Generator">
<meta property="og:description" content="It generates random user using a Random user API and written in Vue.js.">
<meta property="og:image" content="https://drish-xd.is-a.dev/Random-user/Assets/Screenshot.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://drish-xd.is-a.dev/Random-user/">
<meta property="twitter:title" content="Random User Generator">
<meta property="twitter:description" content="It generates random user using a Random user API and written in Vue.js.">
<meta property="twitter:image" content="https://drish-xd.is-a.dev/Random-user/Assets/Screenshot.png">
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://drish-xd.is-a.dev/Random-user/" />
<link rel="icon" href="Assets/icon.svg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="lines">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<div id="app">
<h1 class="title"> {{Title}} </h1>
<div class="user">
<img :src="Picture" :alt="`${FName}${LName}`">
<h1> {{FName}} {{LName}} </h1>
<p> <span class="material-icons">email</span> {{Email}}</p>
<p> <span class="material-icons">call</span> {{Phone}} </p>
<p> <span class="material-icons">location_on</span> {{Address}} </p>
<div class="btn">
<button @click="getUser()"> <span class="material-icons">person_search</span>
<span id="btn-txt" onclick="change()">Generate</span>
</button>
</div>
<footer>Made With ❤️ By <a target="_blank" href="https://drish-xd.is-a.dev/">Drish</a></footer>
</div>
</div>
<script src="https://unpkg.com/vue@3.0.5"></script>
<script src="app.js"></script>
</body>
</html>