forked from GFGSC-GCET/Git_Github_Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (81 loc) · 2.33 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
<!DOCTYPE html>
<html>
<head>
<title>Git & Github Workshop</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
background-image: url("img/bg.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
}
.profile {
max-width: 600px;
margin: 0 auto;
padding: 60px;
margin-bottom: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.profile h1 {
margin-bottom: 40px;
text-align: center;
color: #333;
}
.profile p {
margin-bottom: 10px;
}
.profile .avatar {
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto;
background-color: #ccc;
background-size: cover;
background-position: center;
}
</style>
</head>
<body>
<div class="profile">
<h1>AYUSH YADAV</h1>
<div class="avatar" style="background-image: url('img/ayush.jpeg')"></div>
<p>Branch: IT</p>
<p>Year: 2026</p>
<p>Bio: DevOps | GenAI</p>
</div>
<div class="profile">
<h1>PRERIT AGARWAL</h1>
<div class="avatar" style="background-image: url('img/Prerit.jpeg')"></div>
<p>Branch: CSD</p>
<p>Year: 2027</p>
<p>Bio: Web Development</p>
</div>
<div class="profile">
<h1>Roshan Kumar</h1>
<div class="avatar" style="background-image: url('img/roshan.jpg');"></div>
<p>Branch: CSE-AI</p>
<p>Year: 2027</p>
<p>Bio: DSA</p>
</div>
<div class="profile">
<h1>Dhruv Kumar</h1>
<div class="avatar" style="background-image: url('img/dhruv.jpeg');"></div>
<p>Branch: IT</p>
<p>Year: 2027</p>
<p>Bio: Fundamentals of JAVA</p>
</div>
<!-- add your image to img folder & duplicate below block to add more profiles -->
<!-- <div class="profile">
<h1>your name</h1>
<div class="avatar" style="background-image: url('img/<img_name>');"></div>
<p>Branch: </p>
<p>Year: </p>
<p>Bio: </p>
-->
</body>
</html>