-
-
Notifications
You must be signed in to change notification settings - Fork 122
/
index.html
82 lines (82 loc) · 4.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevProfiles - List Your Developer Profile</title>
<meta name="description" content="DevProfiles is a platform for developers to easily share their profiles, spotlight your skills, and connect with fellow developers in the community.">
<meta name="author" content="Priyansh Prajapat">
<meta name="robots" content="index, follow">
<meta property="og:title" content="DevProfiles - List Your Developer Profile">
<meta property="og:description" content="DevProfiles is a platform for developers to easily share their profiles, spotlight your skills, and connect with fellow developers in the community.">
<meta property="og:image" content="https://devprofiles.is-an.app/assets/devprofiles.jpg">
<meta property="og:url" content="https://devprofiles.is-an.app">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="DevProfiles - List Your Developer Profile">
<meta name="twitter:description" content="DevProfiles is a platform for developers to easily share their profiles, spotlight your skills, and connect with fellow developers in the community.">
<meta name="twitter:image" content="https://devprofiles.is-an.app/assets/devprofiles.jpg">
<meta name="google-site-verification" content="m27Gj2zQkiICZcH_q4TunZj7cTmPjH1bi0EJUnMLOJw">
<link rel="canonical" href="https://devprofiles.is-an.app">
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GTFGBS8HG8"></script>
<script src="https://oyepriyansh.pages.dev/cdnjs/analytics/devprofiles.js" defer></script>
</head>
<body>
<header>
<p class="logo"></p>
<h1><span id="Dev">Dev</span>Profiles</h1>
</header>
<main>
<section class="search">
<input type="text" id="searchInput" placeholder="Search by name or skill...">
</section>
<section>
<a href="https://github.com/oyepriyansh/DevProfiles/blob/main/CONTRIBUTING.md" target="_blank">
<button class="add-col">
Add your Profile
<i class="fa-sharp fa-solid fa-user-plus"></i>
</button>
</a>
</section>
<section class="no-profile">No Profile Found</section>
<section class="container"></section>
</main>
<hr>
<footer>
<div class="footer-content">
<div class="about">
<p class="logo"></p>
<p>DevProfiles is a platform for developers to easily share their profiles, spotlight your skills, and connect with fellow developers in the community.</p>
</div>
<div class="flinks">
<div>
<p>Documentation</p>
<a href="https://github.com/oyepriyansh/DevProfiles/blob/main/CONTRIBUTING.md" target="_blank">Contributing Guide</a>
<a href="#" target="_blank">How to add profile?</a>
</div>
<div>
<p>License</p>
<a href="https://github.com/oyepriyansh/DevProfiles/blob/main/LICENSE" target="_blank">The Unlicense</a>
<a href="https://github.com/oyepriyansh/DevProfiles/blob/main/CODE_OF_CONDUCT.md" target="_blank">Code of Conduct</a>
</div>
<div class="fbtn">
<a href="https://github.com/oyepriyansh/DevProfiles" target="_blank" id="star">Star us ⭐</a>
<a href="https://github.com/sponsors/oyepriyansh" target="_blank" id="sponsor">Sponsor 💖</a>
</div>
</div>
</div>
<div class="ficons">
<a href="https://x.com/oyepriyansh" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="https://github.com/oyepriyansh" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://linkedin.com/in/oyepriyansh" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<p class="copyright">© <span id="currentYear"></span> DevProfiles | All rights reserved.</p>
</footer>
<button id="backToTopBtn" class="top-btn">
<i class="fa-solid fa-arrow-up"></i>
</button>
<script src="scripts/app.js" defer></script>
</body>
</html>