-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.79 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.79 KB
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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
</style>
<title>Gantzos</title>
<link rel="icon" href="glogo.svg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<img class="logo spin" src="glogo.svg">
<button>Join</button>
</div>
<div class="header">
<h1 class="title">It's nice to meet you.</h1>
<h3>We're <span class="colorful">Gantzos</span>, a team based all around the world! We started out on Scratch and slowly expanded across the large ocean of web development. Now you're here, at our newest site! Welcome, take a look around!</h3>
</div>
<div class="team">
<h1>This is us.</h1>
<div class="person" data-name="rgantzos">
<img src="https://github.com/rgantzos.png" class="avatar">
<h3>rgantzos</h3>
<p>Founder / Head Developer</p>
<a href="https://github.com/rgantzos"><button>View on GitHub</button></a>
</div>
<div class="person" data-name="materarc">
<img src="https://github.com/materarc.png" class="avatar">
<h3>MaterArc</h3>
<p>Developer / Business Manager</p>
<a href="https://github.com/materarc"><button>View on GitHub</button></a>
</div>
<div class="person" data-name="daniel">
<img src="https://github.com/daniel4-scratch.png" class="avatar">
<h3>Daniel</h3>
<p>Designer / Cat Lover</p>
<a href="https://github.com/daniel4-scratch"><button>View on GitHub</button></a>
</div>
</div>
<div class="projects">
<h1>These are our projects.</h1>
<div class="project" data-name="scratchtools">
<h3>ScratchTools</h3>
<p>A free browser extension that makes Scratch great.</p>
<a href="https://scratchtools.app"><button>Learn More</button></a>
</div>
<div class="project" data-name="postlit">
<h3>postLit</h3>
<p>The coolest social media you've ever seen.</p>
<a href="https://postlit.dev/"><button>Check it Out</button></a>
</div>
<div class="project" data-name="tdg">
<h3>The Daily Gobo</h3>
<p>A really cool blog for hundreds of Scratchers.</p>
<a href="https://thedailygobo.scratchtools.app"><button>Read the Blog</button></a>
</div>
</div>
<div class="footer">
<img src="colorless.svg" class="colorless">
<span>Gantzos</span>
<p class="right">We're not much right now, but just you wait.</p>
</div>
</body>
<script src="script.js"></script>
</html>