-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccounts.html
31 lines (30 loc) · 866 Bytes
/
accounts.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
<!doctype html>
<html>
<head>
<title> Me on different sites </title>
<script src="/profiles.js"> </script>
<link href="/theme.css" rel="stylesheet">
<style>
.light-block {
background: #eee;
}
</style>
<script>
window.onload = function() {
var e = document.getElementById("profiles")
e.innerHTML += "<tr><td>";
profiles.forEach(function (profile) {
e.innerHTML += getCode(profile);
});
e.innerHTML += "</td></tr>";
}
</script>
</head>
<body>
<br>
<center>
<table id="profiles" class="light-block">
</table>
</center>
</body>
</html>