-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntroduction.html
More file actions
69 lines (68 loc) · 2.02 KB
/
Introduction.html
File metadata and controls
69 lines (68 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<title>Box Model</title>
</head>
<style>
body{
box-sizing: border-box;
padding: 0;
margin: 0;
background-color: #e8d5f1;
display: flex;
font-family: 'Lobster', cursive;
justify-content: center;
align-items: center;
}
.container{
margin: 100px 490px 100px 490px;
border: 3px solid rgb(26, 1, 2);
border-radius: 25px;
width: 100%;
padding: 1% 1% 1% 1%;
background-color:#f1d5d5;
font-size: 20px;
}
#top{
text-align: center;
font-size: 40px;
overflow: hidden;
}
.image{
float: left;
border-radius: 20px;
border: 1px solid black;
margin: 10px 10px 10px 10px;
width: 200px;
overflow: hidden;
}
.data{
float: right;
font-size: 15px;
}
</style>
<body>
<div class="container">
<div id="top">
Introduction<hr>
</div>
<div>
<div class="image" >
<img style="width: 100%;" src="https://gbirla.github.io/CSL3403/IMG_20210802_174814.jpg" alt="Profile Photo">
</div>
<div class="data" >
<p>Name : Ganesh<hr></p>
<p>Roll No. : 2006055<hr></p>
<p>D.O.B : 12/03/2002<hr></p>
<p>Branch : Computer Science Engineering<hr></p>
<p>College : National Institute of Technology, Patna<hr></p>
<p>Address : Khargone Madhya Pradesh, INDIA</p>
</div>
</div>
</div>
</body>
</html>