-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
28 lines (28 loc) · 1 KB
/
about.html
File metadata and controls
28 lines (28 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about.html">About Me</a>
</nav>
<h1>About Me</h1>
<p>Im from kolar,karnataka,I have studied my schooling in chinmaya vidyalaya and completed pu in sahyadri pu college <br>I have completed my BE at East point college of engineering and technology and scored cgpa 6.69</p>
<form>
<label for="name">Name:</label>
<input type="text" placeholder="Enter Your Name"> <br>
<label for="email">Email:</label>
<input type="email"> <br>
<label for="phonenumber">Contact Number:</label>
<input type="phone"> <br>
<label for="message">Please leave a message:</label>
<input type="text" id="message"> <br>
</form>
<button type="submit">Submit</button>
</body>
</html>