-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathindex.html
111 lines (94 loc) · 4.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Hacktoberfest Sign In!!!</title>
<!-- JQUERY -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- FULL PAGE.JS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/jquery.fullpage.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/jquery.fullpage.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/vendors/scrolloverflow.min.js"></script>
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <div id="fullpage"> -->
<!-- Intro Header -->
<!-- Dont Change This Section -->
<div class="section header-bg">
<div class="jumbotron-fluid">
<h1>Hacktoberfest Sign In Sheet</h1>
<p class="lead">Very simple repo! Great for beginners to make their first pull request! Feel free to sign in xD
</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="https://github.com/DSCFutminna/hacktoberfest-html" target="_blank"
rel="noopener noreferrer" role="button">Instructions</a>
</p>
</div>
</div>
<div class="section center list-grid">
<div class="card col-md-4 col-sm-4 col-xs-6">
<img src="img/gaphy.jpg" alt="Gaphy">
<h1>Raji Abdulgafar</h1>
<p class="title">DSC Lead</p>
<p>Federal University of Technology Minna</p>
<a href="https://github.com/abdulgaphy"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/mrgaphy"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/mrgaphy"><i class="fa fa-linkedin"></i></a>
<a href="https://facebook.com/mrgaphy"><i class="fa fa-facebook"></i></a>
<p><button>Contact</button></p>
</div>
<div class="card col-md-4 col-sm-4 col-xs-6">
<img src="img/q.jpg" alt="Gaphy">
<h1>Abdulqudus Abubakre</h1>
<p class="title">Web lead DSCFutminna</p>
<p>Federal University of Technology Minna</p>
<a href="https://github.com/abdulqudus001"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/ibn_Abubakre"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/ibn-abubakre"><i class="fa fa-linkedin"></i></a>
<a href="https://facebook.com/abdulquddus.abubakre"><i class="fa fa-facebook"></i></a>
<p><button>Contact</button></p>
</div>
<div class="card col-md-4 col-sm-4 col-xs-6">
<img src="img/saadranty.jpg" alt="saadrany">
<h1>Issah Saadat</h1>
<p class="title">Developer Relation DSCFutminna</p>
<p>Federal University of Technology Minna</p>
<a href="https://github.com/issahsaadat"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/saadranty"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/"><i class="fa fa-linkedin"></i></a>
<a href="https://facebook.com/"><i class="fa fa-facebook"></i></a>
<p><button>Contact</button></p>
</div>
<div class="card col-md-4 col-sm-4 col-xs-6">
<img src="img/36643967.jpeg" alt="Yusuf">
<h1>Yusuf Saifur-Rahman Adam</h1>
<p class="title">Software Developer</p>
<p>Federal University of Technology Minna</p>
<a href="https://github.com/yusuf-saif"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/yusuf_saif"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/yusuf-saifur-rahman-939533192"><i class="fa fa-linkedin"></i></a>
<p><button>Contact</button></p>
</div>
</div>
<!-- End of Oct' 19 Sign in -->
<!-- </div> -->
<!-- Full Page End -->
<!-- Script -->
<script>
$(document).ready(function () {
$('#fullpage').fullpage();
});
</script>
</body>
</html>