-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (61 loc) · 996 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>
Open Source Contributions
</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
.container{
display:flex;
justify-content:center;
align-items:center;
flex-wrap: wrap;
}
.card{
display:flex;
justify-content:center;
align-items:center;
flex-direction: column;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 20rem;
min-width: max-content;
margin: auto;
text-align: center;
font-family: 'Montserrat';
padding: 10px;
}
.title {
color: grey;
font-size: 18px;
}
.card a{
color: white;
}
</style>
</head>
<body>
<div class="container">
<!--
<div class="card">
<h1>John Doe</h1>
<p class="title">3rd SEM</p>
<p>CSE Dept.</p>
</div>
-->
<div class="card">
<h1>John Doe</h1>
<p class="title">3rd SEM</p>
<p>CSE Dept.</p>
</div>
</div>
<div class="card">
<h1>Aayush Bisen</h1>
<p class="title">7th SEM</p>
<p>CSE Dept.</p>
</div>
</div>
</body>
</html>