-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 1.1 KB
/
index.html
File metadata and controls
35 lines (29 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pull Request Practice</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="assets/favicon.png" type="image/x-icon">
</head>
<body>
<div class="last-added">
<h1 id="last-user">Last contribution by</h1>
<p>Click <a href="https://github.com/vyshnav0/Pull-Request-Practise/blob/main/README.md">here</a> to know how to make your first contribution</p>
</div>
<div class="people-box">
<ol id="user-list">
<!--
Instructions for contributors:
Please add your name and GitHub profile link in the format below.
Example:
<li><a href="https://github.com/your-username">Your Name</a></li>
Change right under the comment section, so that your addition is on top.
-->
<li><a href="https://github.com/vyshnav0">Vyshnav</a></li>
</ol>
</div>
<script src="script.js"></script>
</body>
</html>