-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmembers.html
30 lines (30 loc) · 1.04 KB
/
members.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
<!DOCTYPE html>
<html>
<head>
<title>Scratch AdvancedTopics</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="flex">
<div class="flex-item">
<h3 class="dark-2"><span class="dark-3">/*</span> ATs <span class="dark-3">*/</span></h3>
</div>
<div class="flex-item">
<a href="/" class="dark-1 navlink">Home</a>
</div>
<div class="flex-item">
<a href="https://scratch.mit.edu/studios/30152868/" class="dark-1 navlink">Studio</a>
</div>
<div class="flex-item navlink navlink-right">
<a href="#" class="dark-1" id="themeSwitcher" title="Switch theme">💡</a>
</div>
</nav>
<div class="content">
<h1 class="center header"><span class="light-1">/*</span> <span class="light-2">Members</span> <span class="light-1">*/</span></h1>
<br><br>
<div class="flex flex-center flex-wrap" id="members"></div>
</div>
<script src="theme.js"></script>
<script src="members.js"></script>
</body>
</html>