forked from ConsenSys-Academy/basic-training
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
36 lines (30 loc) · 1010 Bytes
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=">
<link rel="stylesheet" href="../../style.css">
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/gsap.min.js"
async
></script>
<script
src="../../js/text-bounce.js"
async
></script>
<title>Welcome</title>
</head>
<div class="body">
<!-- Title goes below: -->
<h1>Title</h1>
<!-- Content here: -->
<p></p>
<!-- Be sure to alter the link below to add in correct Module and Lesson Number -->
<div class="footer">
<a href="https://github.com/ConsenSys-Academy/basic-training/edit/main/MODULE_NUM/LESSON_NUM/index.html" target="_blank">Edit this page on Github</a>
<div class="discord">
<img class="discord-logo" src="../../img/discord.svg" alt="Discord logo" ><a href="https://discord.gg/FrHSjSn9dX" target="_blank">Questions? Ask on Discord! </a>
</div>
</div>
</div>
</html>