-
Notifications
You must be signed in to change notification settings - Fork 170
/
index.html
83 lines (74 loc) · 2.66 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
<!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" />
<!--fonts-->
<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=Nunito&family=Silkscreen&display=swap" rel="stylesheet" />
<!--stylesheet-->
<link rel="stylesheet" href="deps/style.css" class="stylesheet" />
<title>ROAD-TO-OSS</title>
</head>
<body>
<div class="banner">
<span>
Check out how to do your first contribution and add your profile:
<a href="https://github.com/pygrammers-org/Road-To-OSS" target="_blank" rel="noreferrer">Road-To-OSS</a>
</span>
</div>
<div class="scroll-btn-group">
<i title="scroll to top" class="fa-solid fa-chevron-up" id="btn-up"></i>
<i title="scroll to bottom" class="fa-solid fa-chevron-down" id="btn-down"></i>
</div>
<div class="content" id="content">
<div class="main-logos">
<div class="pylogo">
<a href="https://pygrammers.org/" target="_blank">
<img src="deps/py-l.png" width="150" />
</a>
</div>
<div class="hflogo">
<a href="https://hacktoberfest.com/" target="_blank">
<img src="deps/hf-l.png" width="100" />
</a>
</div>
</div>
<h1 class="road-to-oss">ROAD-TO-OSS</h1>
<div class="search-wrapper">
<label for="search"></label>
<input type="search" placeholder=" Search your profile" id="search" user-search />
</div>
<div class="heading">
<button class="contri" id="contri">CONTRIBUTORS</button>
</div>
<div class="gallery" user-cards-container></div>
<template user-template>
<div id="profile-card" class="card">
<img class="profile-img" src="img1.jpg" user-image />
<h1 user-name></h1>
<a user-url class="inherit-color" target="_blank">
<i class="fa-brands fa-github">
<span user-username></span>
</i>
</a>
<h2 class="current_pos" user-position></h2>
<h3 user-place></h3>
<p user-bio></p>
<button id="profile-download" class="profile-download">
Download Profile
</button>
</div>
</template>
<div id="temp"></div>
</div>
<!--font awesome-->
<script src="https://kit.fontawesome.com/576638e44b.js" crossorigin="anonymous"></script>
<!--html2canvas-->
<script src="deps/html2canvas.min.js" type="text/javascript"></script>
<!--script file-->
<script src="deps/script.js" defer></script>
</body>
</html>