-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>simple website</title>
<style>
body{
margin-left: 200px;
margin-top: 30px;
}
p{
margin-right: 700px;
}
</style>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is the home page of my website</p>
<h1>About Me</h1>
<p>My Name is Rajnandini Tikkal and I'm a web developer.</p>
<ol type="1">
<li>HTML 5</li>
<li>CSS 3</li>
<li>JavaScript</li>
</ol>
<table>
<tr>Row 1, Column 1 Row 1, Column 2</tr>
<td>Row 2, Column 1 Row 2, Column 2</td>
</table>
<h1>Contact Me</h1>
Name:
<input type="text" placeholder="name"/>
<br><br>
Email:
<input type="email" placeholder="email"/><br><br>
Message:
<textarea type="text"></textarea>
<br><br>
<button type="submit">Send</button>
<p>Technology, a dynamic and pervasive force, continually shapes and redefines the way we live, work, and connect with the world. From the rapid evolution of artificial intelligence and machine learning to the ever-expanding realm of interconnected devices in the Internet of Things, technology plays a central role in driving innovation and transforming societies. It empowers individuals and organizations by enhancing efficiency, fostering communication, and unlocking new possibilities across various industries. As breakthroughs in fields like quantum computing, biotechnology, and renewable energy unfold, technology not only addresses current challenges but also paves the way for a future marked by unprecedented advancements and opportunities.</p>
</body>
</html>