-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (114 loc) · 2.41 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 20px;
background-color: rgb(200, 200, 148);
line-height: 1.6;
}
h1,h2{
color: brown;
}
img{
border-radius: 5%;
border: 4px solid black ;
}
img:hover{
transform:scale(1.05) ;
}
.highlight{
color: brown;
}
.skill-list,ul{
list-style: none;
padding: 0;
}
.skill-list,li{
display: flex;
margin: 5px;
border-radius: 15px;
}
table{
text-align: center;
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th,td{
text-align: center;
padding: 10px;
border: 1px solid;
}
th{
background-color: brown;
}
.project-item{
margin: 10px;
padding: 10px;
border-radius: 5px;
box-shadow: 2px 5px rgba(0, 0, 0, 0.1);
}
.contact-info{
text-align: center;
margin: 20px;
padding: 15px;
border-radius: 5px;
}
hr{
border: none;
height: 2px;
background: linear-gradient(to right,brown,rgb(233, 112, 112) );
}
.centre p{
margin-top: 30px;
}
</style>
<body>
<div>
<img src="./Image.jpeg" alt="image">
<h1>Mounish Reddy</h1>
<p>Web Devloper</p>
</div>
<hr>
<h2>About Me</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veniam nesciunt, aut quae aliquid libero pariatur. Distinctio accusantium vel officia dolorem.</p>
<h2>My Skills</h2>
<ul class ="skill list">
<li>HTML</li>
<li>CSS</li>
</ul>
<h2>Education</h2>
<table border>
<tr>
<th>Degree</th>
<th>Institution</th>
<th>Year</th>
</tr>
<tr>
<td><span class="highlight">BTech EEE</span></td>
<td>VNRVJIET</td>
<td>2024-2028</td>
</tr>
</table>
<h2>Projects</h2>
<div class="project-item">
<b>Protfolio Website</b>
<p>The website you are currently viewing</p>
</div>
<h2>Contact Information</h2>
<div class="contact-info">
<p>Email:mounishreddy@gmail.com</p>
<p>Phone:6309550345</p>
</div>
<div class="centre">
<p>©Mounish Reddy.All rights reserved</p>
</div>
</body>
</html>