forked from Satyasuranjeet/PicoAnime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
93 lines (87 loc) · 2.98 KB
/
services.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
<!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="shortcut icon" href="images/fire.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<title>PicoAnime</title>
<style>
body {
background-color: rgb(199, 252, 252);
}
.ti {
text-align: center;
font-size: 60px;
font-family: fantasy;
background: -webkit-linear-gradient(#e600ff, #0234ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 50px;
}
.qq {
list-style: none;
font-size: 30px;
text-align: center;
margin: 20px;
font-family: monospace;
}
</style>
</head>
<body>
<header>
<div class="logo">
<img src="images/satya.png" alt="Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">How to Contribute ?</a></li>
<li><a href="Contact/phpmail/form.html">Contact</a></li>
<li><a href="About/about.html">About Us</a></li>
</ul>
<div class="dropdown">
<button class="dropbtn">☰</button>
<div class="dropdown-content">
<a href="index.html">Home</a>
<a href="services.html">How to Contribute ?</a>
<a href="Contact/phpmail/form.html">Contact</a>
<a href="About/about.html">About Us</a>
</div>
</div>
</nav>
</header>
<h1 class="ti">How to Contribute ?</h1>
<ul>
<li class="qq">Select any anime Character of your choice.</li>
<li class="qq">Get a nice rectangle photo of your Character in png format.</li>
<li class="qq">Generate a 20 word description of your Character.</li>
<li class="qq">Use the given html card template in GitHub to finish your work.</li>
<li class="qq">create a pull request.</li>
<li class="qq">Wait till it gets merged.</li>
</ul>
</body>
<footer>
<div class="f-container">
<div class="footer-content">
<div class="footer-col">
<p class="para">© 2023 PicoAnime. All Rights Are Reserved.</p>
</div>
<div class="footer-col">
<ul class="social-icons">
<li><a href="https://www.facebook.com/rock.satya.1447"><img src="icons/icons8-facebook-48.png" alt=""></a>
</li>
<li><a href="https://github.com/Satyasuranjeet?tab=repositories"><img src="icons/icons8-github-48.png"
alt=""></a></li>
<li><a href="https://www.instagram.com/satyasuranjeet/"><img src="icons/icons8-instagram-48.png" alt=""></a>
</li>
<li><a href="https://www.linkedin.com/in/satyasuranjeet-jena-b85277222/"><img
src="icons/icons8-linkedin-48.png" alt=""></a></li>
<li><a href="https://twitter.com/satyasurnjeet"><img src="icons/icons8-twitter-48.png" alt=""></a></li>
</ul>
</div>
</div>
</div>
</footer>
</html>