-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.02 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PUBG Card</title>
<link rel="stylesheet" href="styles/style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,400;1,500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- ツ is special symbol(katakana letter tu)-->
<h1 class="header">
WolfツSumit
</h1>
<img src="pubg.jpeg" alt="PUBG image">
<hr>
<div class="stats">
<ul>
<li class="list_item"> <strong>Matches Played</strong>: 230</li>
<li class="list_item"> <strong>Wins</strong>: 27</li>
<li class="list_item"> <strong>Top 10</strong>: 141</li>
<li class="list_item"> <strong>Kills </strong>: 561</li>
<li class="list_item"> <strong>K/D Ratio</strong>: 2.65</li>
</ul>
</div>
</div>
</body>
</html>