forked from paulphilip/pythoncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (99 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
104 lines (99 loc) · 2.82 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nithish Dasari | Portfolio</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
header {
background-color: #fff;
padding: 2rem;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
color: #666;
}
section {
max-width: 1000px;
margin: 2rem auto;
padding: 1rem;
}
.card {
background: #fff;
padding: 1.5rem;
margin-bottom: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
}
.skill {
text-align: center;
background: #e6f0ff;
padding: 1rem;
border-radius: 6px;
font-weight: bold;
}
a {
color: #007acc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Nithish Dasari</h1>
<p>Aspiring Developer | Tech Enthusiast | Blogger</p>
</header>
<section>
<div class="card">
<h2>About Me</h2>
<p>I’m Nithish Dasari, an eager and inquisitive B.Tech Computer Science student at the Institute of Aeronautical Engineering, Hyderabad. With interests in programming, blogging, and front-end development, I strive to thrive in environments that challenge my skills and push me to innovate.</p>
</div>
<div class="card">
<h2>Education</h2>
<p>B.Tech in Computer Science<br />Institute of Aeronautical Engineering, 2025</p>
</div>
<div class="card">
<h2>Skills</h2>
<div class="skills-grid">
<div class="skill">Python</div>
<div class="skill">HTML</div>
<div class="skill">CSS</div>
<div class="skill">SQL</div>
<div class="skill">Java (Basics)</div>
</div>
</div>
<div class="card">
<h2>Projects</h2>
<h3>Smart Mobile Application for Health Management</h3>
<p>A mobile app designed to enhance the health management system by streamlining user interaction and accessibility for health monitoring and support.</p>
</div>
<div class="card">
<h2>Contact</h2>
<p><strong>Phone:</strong> 9550982967</p>
<p><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/nithish-dasari-64a5aa280/" target="_blank">Nithish Dasari</a></p>
</div>
</section>
</body>
</html>