-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (91 loc) · 2.79 KB
/
index.html
File metadata and controls
163 lines (91 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width,initial-scale=1.0">
</head>
<body>
<header>
<h1>My Portfolio</h1>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#project">Projects</a>
<a href="#contact">Contact</a>
</header>
<main>
<section id="about">
<h1>Lakshmiprasanna.Madana</h1>
<p>I am passionate about My Learning.</p>
<p>Currently, i am persuing <em> HTML , CSS , JavaScript Course </em> from online. </p>
<p>My goal is to become a <strong>Front-End Developer</strong>.</p>
</section>
<section id="skills">
<h1>Skills</h1>
<ol>
<li>Python Basics</li>
<li>HTML</li>
<li>CSS</li>
</ol>
</section>
<section id="project">
<h1>
My Projects
</h1>
<table border="1">
<tr>
<th>projects</th>
<th>description</th>
</tr>
<tr>
<td>Portfolio Website</td>
<td>I built a portfolio website by using html</td>
</tr>
<tr>
<td>Saree Shop Website</td>
<td>I have built this website by using HTML , CSS</td>
</tr>
<tr>
<td>Mood Detection System</td>
<td>I have built a Mood Detection System by using python basics</td>
</tr>
<tr>
<td>Simple Calculator</td>
<td>I have built a Simple Calculator by using python basics</td>
</tr>
</table>
</section>
<section id="contact">
<h1>Contact Me</h1>
<p>Feel Free to Contact me for More Information</p>
<form action=" ">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="email">Email:</label>
<input type="email" name="email">
<br>
<b>choose your gender:</b>
<input type="radio" name="gender" value="male">
<label for="male">Male</label>
<input type="radio" name="gender" value="female">
<label for="Female">Female</label>
<br>
<b>Select your interests:</b>
<input type="checkbox" id="reading" value="reading">
<label for="reading">Reading</label>
<input type="checkbox" id="coding" value="coding">
<label for="coding">Coding</label>
<br>
<label for="bio">Bio(maintain atleast 20 characters)</label>
<textarea></textarea>
<br>
<button>submit</button>
</form>
</section>
</main>
<footer>
<p> 2026 my portfolio</p>
</footer>
</body>
</html>