forked from prograd-org/project-12-superwars-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 619 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (22 loc) · 619 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Super Wars</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="arena">
<div id="heroes" class="team">
</div>
<div id="score">
</div>
<div id="villains" class="team">
</div>
</div>
<footer class="footer">Made with <img src="/images/Vector.svg"> by ProGrad</footer>
</body>
<script src="./src/app.js"></script>
</html>