-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
63 lines (61 loc) · 3.02 KB
/
Index.html
File metadata and controls
63 lines (61 loc) · 3.02 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
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
<meta name="description" content="This is a beginner web page">
</head>
<body>
<h1>My Very First Web Page! </h1>
<p>I can't believe! I have created my first web page! Yesssss!</p>
<!-- embed image -->
<img widht="300" height="200" src="KA.jpg" alt="This is an image of KA">
<br>
</body>
<!--anchor tags - navigate within web page-->
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<!--anchor tags - navigate to another page within your directory (adding target=blank makes it open in a new tab)-->
<a href="Services.html" target="_blank">Services</a>
<!--anchor tags - navigate to an external webpage/website-->
<a href="https://google.com">Visit Google.COM</a>
<section id="home">
<p>THIS IS THE HOME SECTION</p>
<!--Line break (break continuity) to avoid element-->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</section>
<section id="about">
<p>THIS IS THE ABOUT SECTION</p>
<!--Line break (break continuity) to avoid element-->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</section>
<section id="contact">
<p>THIS IS THE CONTACT SECTION</p>
<!--Line break (break continuity) to avoid element-->
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></section>
<section>
<section>
<!-- Creating a form here -->
<p>Contact Us</p>
<form action="/submit-form" method="POST">
<!-- Input field for name -->
<label for="name"> Name:</label>
<input type="text" id="name" name="full-name">
<br>
<!-- input field for mobile -->
<label for="mobile">Mobile No.:</label>
<input type="tel" id="mobile" name="mobile-number">
<br>
<!-- input field for email -->
<label for="email">Email</label>
<input type="email" id="email" name="email">
<br>
<!-- Input multiple lines of text -->
<label for="message">Message</label>
<textarea rows="6" cols="50" maxlength="5" id="message" name="message"></textarea>
<br>
<button type="submit">Submit</button>
<input type="reset" value="Clear Form">
</form>
</section>
</html>