-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSuperHero.html
30 lines (26 loc) · 1.05 KB
/
SuperHero.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>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>GET super heros</title>
<link href="SuperHero.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="mainDiv w-100" id="mainDiv">
<h1 class="fonter"><span style="color: #5028E9;">Get</span> <span style="color: red;">Your</span> <span style="color: #E8C61B;">SuperHero</span> </h1>
<span style="font-size: 20px; margin-left: 10rem; margin-bottom: 1rem;">RAndom Hero</span>
<span><button id="run" onclick="run()" class="btn"></button></span>
<input type="text" id="run2" class="input" style="margin-left: 3rem;"/>
<span><button onclick="run2()" class="btn"></button></span>
<div id="onoff" style="display: none;">
<div id="subDiv"></div>
<h1 id="name"></h1>
<div class="imgDiv" id="imgDiv">
</div>
</div>
</div>
<script src="script.js"></script>
<script src="https://replit.com/public/js/replit-badge.js" theme="blue" defer></script>
</body>
</html>