-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (60 loc) · 2.48 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Super Hero</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/superhero/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
</div>
</div>
</nav>
<div class="hero text-center">
</div>
<div class="container">
<div class="row margin-top-50">
<div class="row margin-left-50">
<div class="col-md-2">
<div class="vertical-menu">
<a href="index.html" class="active">Home</a>
<a href="bios.html">Bios</a>
<a href="top50.html">Top 50</a>
<a href="powerstats.html">Powerstats</a>
</div>
</div>
<div class="col-md-8">
<div class="about-fly-in">
<h1>Welcome to Our Site!</h1>
<p>DC versus Marvel! Who really has the strongest super heroes? <br>
Feel free to explore our site and search your favorite super heroes. <br>
Check out their bios, history, and powerstats! <br>
Compare the top 50 super heroes from each universe based on their strengths.
</p>
<h1 class="ml4">
<span style ="color: blue;" class="letters letters-1">Superman </span>
<span style ="color: red;"class="letters letters-2"> Thor </span>
<span style ="color: black;"class="letters letters-3"> Batman </span>
<span style ="color: red;"class="letters letters-4"> Captain America </span>
<span style ="color:gold;"class="letters letters-5"> Flash </span>
<span style ="color: red;"class="letters letters-6"> Spider-Man </span>
</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.11.0/d3.js"></script>
<script src="/static/js/app.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
</body>
</html>