-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
137 lines (136 loc) · 5.93 KB
/
index.html
File metadata and controls
137 lines (136 loc) · 5.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<title>webport.ing</title>
<meta
charset="UTF-8">
<meta
name="viewport"
content="width=device-width, initial-scale=1.0">
<meta
name="title"
content="webport.ing">
<meta
name="description"
content="Group of friends working with each other to port games.">
<link
rel="stylesheet"
href="css.css">
<link
rel="preconnect"
href="https://fonts.googleapis.com">
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"
rel="stylesheet">
<link
rel="icon"
type="image/png"
href="icons/45.webp">
</head>
<body>
<nav>
<div
class="container">
<a
class="icon">
<img
src="icons/45.webp"
alt="webport.ing">
</a>
<a
href="/">Home
</a>
<a
href="projects.html">Projects
</a>
</div>
</nav>
<main>
<div
class="container">
<h1>Webport.ing (NPA)</h1>
<p
class="tagline">A group of webporters working together to port games to WebGL.</p>
<section
class="team-section">
<h2>Team</h2>
<div
class="team-grid">
<div
class="team-member">
<img
src="icons/breadbb.webp"
alt="Member">
<div>
<div
class="name">Breadbb</div>
</div>
</div>
<div
class="team-member">
<img
src="icons/98corbin.webp"
alt="Member">
<div>
<div
class="name">98corbins</div>
</div>
</div>
<div
class="team-member">
<img
src="icons/bog.webp"
alt="Member">
<div>
<div
class="name">Bog</div>
</div>
</div>
<div
class="team-member">
<img
src="icons/slqnt.webp"
alt="Member">
<div>
<div
class="name">Slqnt</div>
</div>
</div>
</div>
</section>
</div>
</main>
<footer>
<div
class="container">
<div
class="footer-content">
<div
class="footer-links">
<a
href="https://github.com/webporting">GitHub</a>
<a
href="https://discord.gg/UtucjaxGNG">Discord</a>
</div>
<div
class="copyright"></div>
</div>
</div>
</footer>
<script
async src="https://www.googletagmanager.com/gtag/js?id=G-BRPEBVLGFH">
</script>
<script>
window.dataLayer
=
window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BRPEBVLGFH');
</script>
</body>
</html>