-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (77 loc) · 3.35 KB
/
index.html
File metadata and controls
81 lines (77 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}
header {
text-align: center;
margin: 20px 0;
}
header img {
max-width: 150px;
height: auto;
border-radius: 50%;
border: 3px solid #ccc;
margin-top: 10px;
}
section {
width: 80%;
max-width: 600px;
display: flex;
flex-direction: column;
align-items: center;
}
.image-container {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px 0;
}
.image-container img {
width: 100%; /* Ensure images resize to fit the container */
max-width: 600px; /* Set a maximum width */
height: auto; /* Maintain aspect ratio */
border: 2px solid #ccc;
border-radius: 5px;
}
.image-container p {
text-align: left;
margin: 10px 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<img src="https://raw.githubusercontent.com/Praneeth0095/Praneeth-github.io/refs/heads/main/IMG-20241230-WA0012.jpg" alt="My Photo">
<p>My name is Praneeth I am currently pursueing B-tech in Gayatri Vidya Parishad College of Engineering in computer science and engineering. This is a photo of mine! I live in Tanuku.</p>
</header>
<section>
<h2>Gallery</h2>
<p>Here is a small description about my city. Tanuku, Tanuku is a town in Andhra Pradesh, known for its cultural heritage and agricultural significance, especially rice farming. Below you can see some must visit places tanuku</p>
<div class="image-container">
<img src="https://raw.githubusercontent.com/Praneeth0095/Praneeth-github.io/refs/heads/main/images%20(4).jpeg" alt="RK Beach">
<p>Description: NTR Park in Tanuku is a well-maintained recreational area, popular among locals for its peaceful ambiance. The park features lush greenery, walking paths, and play areas, making it a perfect spot for family outings and relaxation.</p>
</div>
<div class="image-container">
<img src="https://raw.githubusercontent.com/Praneeth0095/Praneeth-github.io/refs/heads/main/IMG-20241230-WA0010.jpg" alt="Kailasagiri">
<p>Description: Sidhantham Barrage, near Tanuku, is an irrigation structure on the Godavari River that supports agriculture and provides scenic views..</p>
</div>
<div class="image-container">
<img src="https://raw.githubusercontent.com/Praneeth0095/Praneeth-github.io/refs/heads/main/IMG-20241230-WA0009.jpg" alt="Submarine Museum">
<p>Description: Sri Daneswari Ammavari Temple is a revered Hindu shrine located in Duvva, a village in the West Godavari district of Andhra Pradesh, India. The temple is dedicated to Goddess Parvati, worshipped here as Sri Daneswari Ammavaru.</p>
</div>
</section>
</body>
</html>