-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.32 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.profile-card {
background: lightblue;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 20px;
width: 300px;
}
.profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 15px;
}
.name {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
.bio {
font-size: 16px;
color: #666;
line-height: 1.5;
}
</style>
</head>
<body>
<div class="profile-card">
<img src="opencode.jpg" alt="Profile Picture" class="profile-pic">
<h2 class="name">OpenCode</h2>
<p class="bio">Embrace collaboration, innovation & limitless possibilities with OpenCode, NITR's Official Open Source & Cyber Security Club.</p>
</div>
</body>
</html>