-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (55 loc) · 2.85 KB
/
Copy pathabout.html
File metadata and controls
55 lines (55 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marvel Collection</title>
<link rel="stylesheet" href="assets/styles/style.css">
<script src="dist/index.js" defer></script>
</head>
<body>
<header>
<nav id="navbar">
<a href="#" class="logo">Marvel Collection</a>
<div class="mobile-menu-icon">
<button id="button-open-menu">
<img src="assets/images/open-menu-icon.svg" alt="Abrir Menu" class="image-open-menu">
</button>
</div>
<div class="mobile-menu-icon">
<button id="button-close-menu" class="off">
<img src="assets/images/close-menu-icon.svg" alt="Fechar Menu" class="image-close-menu">
</button>
</div>
<ul class="navlist off">
<li class="component-navlist">
<a href="index.html" class="link-component-navlist" tabindex="1" data-label="Characters">Characters</a>
</li>
<li class="component-navlist">
<a href="power-ratings.html" class="link-component-navlist" tabindex="2" data-label="Power Ratings" target="_parent">Power Ratings</a>
</li>
<li class="component-navlist">
<a href="#" class="link-component-navlist" tabindex="3" data-label="About">About</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h1 class="title">This project is developed by <a href="https://lucasnumeriano.github.io" target="_blank">Lucas Numeriano</a></h1>
<br>
<p class="paragraph">MarvelCollection is a collaborative repository dedicated to gathering a diverse collection of the most iconic heroes and villains from the Marvel universe, helping beginning developers make their first pulls. Marvel enthusiasts are invited to fork this repository, add their favorite hero or villain, and contribute to this growing gallery of characters. From the legendary Avengers to the cunning villains, this repository is home to all the figures that have shaped the exciting world of Marvel comics. Join us and leave your mark on the Marvel universe!</p>
</section>
<section id="community-members">
<h2>Community members who have already contributed</h2>
<a href="https://github.com/lucasnumeriano/MarvelCollection/graphs/contributors">
<img src="https://contrib.rocks/image?repo=lucasnumeriano/MarvelCollection"/>
</a>
</section>
</main>
<footer>
<p class="paragraph-footer">Developed by Lucas Numeriano.</p>
<p class="paragraph-footer">This project is under MIT License.</p>
</footer>
</body>
</html>