-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (101 loc) · 4.07 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
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
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>The Vigilante Agency Main</title>
<link rel="icon" type="image/x-icon" href="Images/logo.jpeg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Caveat&family=Onest:wght@300&family=Open+Sans:ital,wght@1,300&family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400&family=Rowdies&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Bangers&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/x-icon" href="Images/logo.jpeg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Caveat&family=Onest:wght@300&family=Open+Sans:ital,wght@1,300&family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400&family=Rowdies&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li class="home-page">homepage</li>
<li class="team-page">team page</li>
<li class="contact-us">contact us</li>
</nav>
<main class="super-hero-home-page-container">
<h1 id="main-title">The <span>Vigilante</span> Agency</h1>
<div class="main-page-box">
<section class="intro-text">
<h2><span>What</span> we do</h2>
<p>
At our heart,
<span>we’re problem solvers here to save the day.</span> Your child's
been kidnapped? Terrorists threatening to blow up your building? A
supervillain aiming the world’s strongest laser at the planet? These
are the types of challenges we strive at, and for our team,<span>
the bigger the problem the better.</span
>
</p>
</section>
<img
id="logo"
src="images/logo.jpeg"
alt="The Vigilante Agnecy logo. It contains cartoon superheros and the VA letters in front."
/>
</div>
<!-- <hr> -->
<div class="main-page-box">
<section class="pictures">
<h2>Our team in action</h2>
<div class="slideshow-container">
<div class="photo"></div>
<div>
<a class="prev" >❮</a>
<a class="next" >❯</a>
</div>
<br />
<div id="dot-parent">
</div>
</div>
</section>
<section class="intro-text">
<h2><span>Who</span> we are</h2>
<p>
We’re a team of <span>intergalactically renowned superheroes</span>,
coming together from different universes to find solutions to your
problems. We combine strength, expertise, and skill with cutting
edge technology to assemble
<span
>the ultimate team to solve any threat you may be facing.</span
>
Our four hero associates can be hired independently, as a team, or
in a bespoke combination to meet your needs.
</p>
</section>
</div>
</main>
<footer>
<div class="icon-parent-container">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
<div class="year"></div>
<div class="footer-logo">
<img src="images/logo.jpeg" alt="The Vigilante Agency Logo">
</div>
</footer>
<script src="index.js"></script>
</body>
</html>