-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
57 lines (57 loc) · 1.58 KB
/
home.html
File metadata and controls
57 lines (57 loc) · 1.58 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
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
color: #333;
line-height: 1.6;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
background: white;
}
.info-card {
background: #d8f3dc;
border-radius: 12px;
padding: 3rem;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 500px;
width: 100%;
height: 100%;
}
.info-card h3 {
color: #1b4332;
margin-bottom: 1.5rem;
font-size: 1.8rem;
}
.info-card p {
margin-bottom: 1rem;
padding: 0.5rem 0;
font-size: 1.1rem;
}
.info-card strong {
color: #2d6a4f;
}
</style>
</head>
<body>
<div class="info-card">
<h2 class="content-header"></h2>
<figure>
<img src="myName.png" alt="" height="200px" width="200px" style="border-radius: 50%;">
</figure>
<h3>Student Information</h3>
<p><strong>ID:</strong> 1289110</p>
<p><strong>Name:</strong> Tamima Mollick Tuly</p>
<p><strong>Batch No:</strong> CS/JPTL-M/66/01</p>
</div>
</body>
</html>