-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 1.6 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
<!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>Home</title>
<link rel="stylesheet" href="./css/home.css"/>
<script src="./js/home.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
</head>
<body>
<div>
<center><img src="assets/cf.jpg" style="width:25vw;height:5vw;"></center>
</div>
<div id="detail">
<p><u>Enter the username</u></p>
<div id="search">
<input type="text" id="handle" placeholder="Frey0_0"><br><br>
<button onclick="info();">Search</button>
<button onclick="friends()">Show your friends</button>
<button onclick="blogs()">Blogs</button>
</div>
</div>
<div id="user_info">
<p id="image"></p>
<p id="handle"></p>
<p id="name"></p>
<p id="rating"></p>
<p id="max_rating"></p>
<p id="rank"></p>
<p id="location"></p>
<p id="friendsof"></p>
</div>
<center> <canvas id="myChart" style="width:100%;max-width:600px"></canvas></center>
<div id="contest">
<p id="c1"></p>
<p id="c2"></p>
<p id="c3"></p>
<p id="c4"></p>
<p id="c5"></p>
</div>
<div id="friends">
<div ><p id="online"></p></div>
<div> <p id="all"></p></div>
</div>
<div id="blogs">
<h1 id="h1"></h1>
<p id="b1"></p>
<h1 id="h2"></h1>
<p id="b2"></p>
<h1 id="h3"></h1>
<p id="b3"></p>
</div>
</body>
</html>