-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (27 loc) · 917 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bangers&family=Russo+One&display=swap" rel="stylesheet">
<title>Random kutya és macska generátor</title>
</head>
<body>
<div class="results">
<div id="cat_result" class="result">
<p>Random<br>Macska</p>
</div>
<div id="dog_result" class="result">
<p>Random<br>Kutya</p>
</div>
</div>
<div class="buttons">
<button id="cat_btn">Macska</button>
<button id="dog_btn">Kutya</button>
</div>
<script src="app.js"></script>
</body>
</html>