-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTribute web.html
86 lines (67 loc) · 2.46 KB
/
Tribute web.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<title>MyTributepage.com</title>
<style>
#main{
background-color: slategray;
padding: 25px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: 'Open Sans', sans-serif;
flex-wrap: wrap;
}
#title{
}
#img-div{
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 6px;
}
#Image{
width: 100%;
height: 90%;
}
#tribute-info{
padding-left: 160px;
}
li{
padding-bottom: 25px;
}
</style>
</head>
<body>
<div id="main">
<h2 id="title"> Mr.Rickey Upadhyay </h2>
<p>The man who Have built his own Kingdom</p>
<div id="img-div">
<img src="DSC_0002.JPG" alt="" id="Image">
<p id="img-caption">
Rickey upadhyay is one a normal person who his currently learning web development and completing his Freecodecamp challenge.
</p>
</div>
<ul id="tribute-info">
<h3>Here is a Timeline of Mr.rickey upadhyay</h3>
<li>Born in 2002</li>
<li>His Nickname is 'Rickey' Real one is Prabadhya</li>
<li>His interest is in playing Football</li>
<li>He do not believe in Traditional Education</li>
<li>He wants to be an entrepreneur and Generate employment for his country</li>
<li>Currently he is working on a FCC project</li>
<p>Rickey upadhyay is kind and very humble person. <br>
--His friends
</p>
</ul>
<p> <h2> If you have time you should read about this beautiful human being on</h2> <a href="#" id="Tribute-link">Wikipedia entry
</a></p>
</div>
</body>
</html>