-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
99 lines (87 loc) · 3.23 KB
/
random.html
File metadata and controls
99 lines (87 loc) · 3.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Superhero Generator</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="favicon.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/8fb9ac784a.js" crossorigin="anonymous"></script>
</head>
<body>
<div class= "titleContainer">
<div class="side-nav" id="side-nav">
<i class="fas fa-times" id="closeMenuButton"></i>
<div class= "navLink-container">
<div class= "navLink"><a href= "index.html">HOME</a></div>
<div class= "navLink"><a href= "find.html">FIND CHARACTERS</a></div>
<div class= "navLink"><a href= "daily.html">DAILY CHARACTERS</a></div>
<div class= "navLink"><a href= "random.html">MAKE YOUR OWN</a></div>
<div class= "navLink"><a href= "favorite.html">FAVORITES</a></div>
<div class= "navLink"><a href= "comment.html">COMMENTS</a></div>
</div>
<div class= "menu" id="menuButton">
<div class= "line"></div>
<div class= "line"></div>
<div class= "line"></div>
</div>
</div>
<div class= "logo">
<img src= "marvel.png">
<h1>Characters</h1>
</div>
<nav>
<ul>
<li><a href= "index.html">Home</a></li>
<li><a href= "find.html">Find Characters</a></li>
<li><a href= "daily.html">Daily Characters</a></li>
<li><a href= "random.html">Make Your Own</a></li>
<li><a href= "favorite.html">Favorites</a></li>
<li><a href= "comment.html">Comments</a></li>
</ul>
</nav>
</div>
<div class= "random-generator">
<h2>Superhero Randomizer</h2>
<p>Click the button to make your own random superhero!</p>
<button id= "randombtn">Generate Superhero</button>
</div>
<div class= "random-library">
<!-- <div class= "random-info">
<div class= "basics">
<img src= "unknown.png">
<h1>ScarletX</h1>
<h3>Type: Villian</h3>
<h3>Gender: Female</h3>
</div>
<div class= "random-extras">
<div class= "background">
<p>Birthplace: Berlin, Germany</p>
<p>Race: Human</p>
<p>Work: sklfjsdl</p>
<p>Eye Color: Blue</p>
<p>Hair Color: Blue</p>
<p>Looks: 100</p>
</div>
<div class= "random-stats">
<p>Intellignece: 100</p>
<p>Durability: 100</p>
<p>Speed: 100</p>
<p>Strength: 100</p>
<p>Combat: 100</p>
<p>Power: 100</p>
</div>
</div>
</div>
-->
</div>
<script type= "module" src="script.js"></script>
<script type= "module" src="random.js"></script>
<script type= "module" src="utils.js"></script>
</body>
</html>