forked from suhanigarg29/Namecard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (82 loc) · 4.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Namecards</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link href="https://fonts.googleapis.com/css?family=Pirata+One" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<div class="container">
<h1 class="text-center">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px"
viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve" role="img" aria-labelledby="dyn2wm4vin1xgraye3ggy9kf12oaz8a"
class="header__logo" width="50px" height="50px">
<title id="dyn2wm4vin1xgraye3ggy9kf12oaz8a">SAIC</title>
<style type="text/css">
.st0 {
fill: #21ffff;
}
</style>
<span class="main-title">Namecards</span>
</h1>
<div class="row">
<a href="https://github.com/suhanigarg29/Namecard" class="btn btn-lg branch btn-outline-primary btn-color-saic">
<i class="fas fa-code-branch"></i> Submit your pull request</a>
<a href="https://saic.iitbhu.ac.in/" class="btn btn-lg btn-outline-primary btn-color-saic home">
<i class="fas fa-home"></i> SAIC WEBSITE </a>
</div>
<br><br><br>
<!-- Global row, put your code between it-->
<div class="row">
<!-- First card ! It's me ;) -->
<div class="col-12 col-md-6 col-lg-3 contributor">
<div class="card card__animate">
<img class="card-img-top img-fluid" src="./images/saic.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Title of Name Card</h5>
<hr class="separator">
<p class="card-text">Brief description about yourself.</p>
<a href="your-github-profile-link-here" class="button">GitHub Profile</a>
</div>
</div>
</div>
<!--end of the first card -->
<!-- First card ! It's me ;) -->
<div class="col-12 col-md-6 col-lg-3 contributor">
<div class="card card__animate">
<img class="card-img-top img-fluid" src="./images/saic.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Samiksha</h5>
<hr class="separator">
<p class="card-text">Hello , this is Samiksha.My branch is MnC,and I am in my first year.</p>
<a href="https://github.com/samikshadeore42" class="button">GitHub Profile</a>
</div>
</div>
</div>
<!--end of the first card -->
<!-- End of global row -->
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-lazyload/10.17.0/lazyload.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<script data-main="./js/main" src="./js/require.js"></script>
</body>
</html>