-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
58 lines (53 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="assets/images/logo.png" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://kit.fontawesome.com/yourcode.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>LGM-SOC | 2021</title>
</head>
<body>
<header class="nav">
<div class="topnav" id="myTopnav">
<a href="#home" class="active">Home </a>
<a href="https://letsgrowmore.in/projects/" target="_blank">Projects</a>
<a href="#" target="_blank">Leaderboard</a>
<a href="https://letsgrowmore.in/contact-us/" target="_blank">Contact</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="material-icons">format_list_bulleted</i>
</a>
</div>
</header>
<section>
<img class="logo" src="assets/images/logo.png">
<div class="infobox">
<div class="btns">
<a href="pages/issuemeaning.html">Issue-Label & Their Meanings</a>
<a href="pages/issuepoints.html">Issue-Label & Points</a>
<a href="pages/projectdetails.html">Project-Mentor-PA</a>
<a href="pages/participantsguidelines.html">Participant Guidelines</a>
</div>
</div>
</section>
<footer class="footer">
<div>
<p>LGM-SOC | 2021 | ©</p>
</div>
</footer>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
</body>
</html>