-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 3.91 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
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Kenneth Kheem P Bulawit</title>
<!--Im a Full Stack Web Developer in the making-->
<meta charset="UTF-8">
<meta name="description" content="Kenneth Kheem Bulawit's Portfolio">
<meta name="author" content="Kenneth Kheem Bulawit">
<meta name="keywords" content="Full Stack, Web Developer, HTML, CSS, JavaScript,">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body style="background-color:powderblue;">
<h2 style="text-align: center;"><b>Kenneth Kheem P Bulawit</b></h2>
<hr>
<p>Home</a></p><hr>
<p>Projects</p><hr>
<p>About</p><hr>
<p>Blog</p>
<article>
<h3>The Basics of <html></html></h3>
<p>One of the great things about HTML is that it is easy to learn and there are plenty of resources available to help you get started. Whether you are a beginner or an experienced developer, there is always something new to discover and learn.
Here are some basic examples of HTML that you can use to get started:</p>
<a href="https://www.w3schools.com/html/html_headings.asp"><b><i>1. Creating Headings</i></b></a>
<p>HTML uses heading tags to create headings of different sizes. Here is an example of how to create a heading:</p>
<p><h1>This is a Heading</h1></p>
<a href="https://www.w3schools.com/html/html_paragraphs.asp"><b><i>2. Adding Text</i></b></a>
<p>HTML allows you to add text to your web pages. Here is an example of how to add text:</p>
<p><p>This is a Paragraph</p></p>
<a href="https://www.w3schools.com/html/html_images.asp"><b><i>3. Adding Images</i></b></a>
<p>HTML allows you to add images to your web pages. Here is an example of how to add an image:</p>
<p><img src="image.jpg" alt="description of image" /></p>
<a href="https://www.w3schools.com/html/html_links.asp"><b><i>4. Creating Links</b></a>
<p>HTML allows you to create links to other web pages. Here is an example of how to create a link:</p>
<p><a href="http://www.example.com">Click here to visit Example.com</a></p>
<a href="https://www.w3schools.com/html/html_lists.asp"><b><i>5. Creating Lists</b></a>
<p>HTML allows you to create ordered and unordered lists. Here is an example of how to create an unordered list:</p>
<pre>
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
</pre>
<p>These are just a few examples of what you can do with HTML. As you continue to learn, you will discover more and more ways to customize and style your web pages.</p>
<p>Learning HTML can be a fun and rewarding experience. Not only will you be able to create your own web pages, but you will also gain a valuable skill that can lead to exciting career opportunities in web development. So why not give it a try and see what you can create!</p>
</article>
<hr>
<p>Contact</p>
<p>Comments? and Suggestions? Feel free to Message me.</p>
<form action="/action_page.php">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value="John"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value="Doe"><br><br>
<textarea name="message" rows="10" cols="30"></textarea>
<input type="submit" value="Submit">
</form>
</html>