-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
57 lines (52 loc) · 4.37 KB
/
html.html
File metadata and controls
57 lines (52 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>HTML</title>
</head>
<body background="nb.jpg">
<nav class="navbar background" >
<ul class="nav-list">
<div class="logo"><img src="img.jpg" alt="logo"</div>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="java.html">JAVA</a></li>
<li><a href="c.html">C++</a></li>
<li><a href="python.html">PYTHON</a></li>
<li><a href="html.html">HTML</a></li>
<li><a href="css.html">CSS</a></li>
</ul>
</nav>
<section class="section section-lefts">
<div class="paras">
<p class="sectionTag text-big">HTML Course Overview</p>
<p class="sectionSubTag text-small">
While Web Development is one of the most famous subjects amongst Geeks all over the world, it isn't relatively new.<br> But the constant experimenting due to the new emerging technologies is what keeps the excitement of this subject going through the roof! Even though coding during Web Development is easier than Software Designing, a good amount of logic and a determined mindset is required to pursue it.<br>
In this course, you will be learning all there is to know to kickstart your journey of Web Designing with HTML.<br> Its purpose is to design web pages using a marked-up language and this is also the first step one takes to design their own website.<br> This course is designed for beginners, mainly school students a zeal to learn a new skill and will be taught by Industry Experts as well!<br>
<h5 class="gg">What you will learn</h5>
1.Creating your own webpage from scratch!<br>
2.Use of HTML tags that are required to create webpages<br>
3.How to embed videos and audios inside a webpage<br>
4.All the concepts and techniques that are used to design eye-catching web pages!<br>
<h4 class="FF">HTML basics</h4>
In this article, we will go through all the basic stuff of HTML coding. There are various tags that we must consider and include while starting to code in HTML. These tags help in the organization and basic formatting of elements in our script or web pages.<br> These step by step procedures will guide you through the process of writing HTML.<br>
Basic HTML Document: Below mentioned are the basic HTML tags which divide the whole document into various parts like head, body etc.<br>
Every HTML document begins with a HTML document tag. Although this is not mandatory but it is a good convention to start the document with this below-mentioned tag.<br> Please refer to the HTML Doctypes article for more information related to Doctypes.<br>
<!DOCTYPE html><br><ul>
<li>html : Every HTML code must be enclosed between basic HTML tags. It begins with html and ends with /html tag.</li><br>
<li>head: The head tag comes next which contains all the header information of the web page or documents like the title of the page and other miscellaneous information. This information is enclosed within the head tag which opens with head and ends with /head. The contents will of this tag will be explained in the later sections of course.</li><br>
<li>title: We can mention the title of a web page using the title tag. This is header information and hence is mentioned within the header tags. The tag begins with title and ends with /title.</li><br>
<li>body: Next step is the most important of all the tags we have learned so far. The body tag contains the actual body of the page which will be visible to all the users. This opens with body and ends with /body. Every content enclosed within this tag will be shown on the web page be it writings or images or audios or videos or even links. We will see later in the section how using various tags we may insert mentioned contents into our web pages</li><br></ul>
<h6 class="ee">To Watch Tutorials Click On the Button Given Below </h6></p>
<button class="btn-sb"><a class="ii" href="https://youtu.be/BsDoLVMnmZs" target="_blank">HTML</a><br></button>
</div>
</section>
<footer class="background">
<p class="text-footer">Copyright © 2027-All rights reserved
</p>
</footer>
</body>
</html>