-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.23 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.23 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
<html lang="hu_HU">
<head>
<meta charset="UTF-8">
<title>Random felhsználó generátor</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
<link rel="stylesheet" href="./main.css">
<link rel='shortcut icon' href='./user.ico'>
</head>
<body>
<div class="user">
<div class="header">
<img src="" alt="" class="user" id="img">
<div id="name" class="name"></div>
</div>
<div class="data">
<div>
<i class="fa fa-phone" aria-hidden="true"></i>
<span class="phone" id="phone"></span>
</div>
<div>
<i class="fa fa-envelope-o" aria-hidden="true"></i>
<span class="mail" id="email"></span>
</div>
<div>
<i class="fa fa-map-o" aria-hidden="true"></i>
<span class="location" id="location"></span>
</div>
</div>
<button onclick="getUser()">Új felhasználó generálása</button>
<footer>
Az oldal a <a href="https://randomuser.me/">Random User</a> api használatával készült!
</footer>
</div>
<script type="text/javascript" src="./capitalize.js"></script>
<script type="text/javascript" src="./capitMore.js"></script>
<script type="text/javascript" src="./index.js"></script>
</body>
</html>