Module 1 Lecture 1
Module 1 Lecture 1
1
AIIT - L
2
AIIT - L
HTML is heavily used for creating pages that are displayed on the world
wide web. Every page contains a set of HTML tags, including hyperlinks
which are used for connecting to other pages. Every page that we witness
on the world wide web is written using a version of HTML code
3
AIIT - L
Block-level Elements
<p>The DIV element is a block element, and will always start on a new line and take
up the full width available (stretches out to the left and right as far as it can).</p>
</body>
</html>
4
AIIT - L
Hello World
The DIV element is a block element, and will always start on a new line and
take up the full width available
5
AIIT - L
Inline Elements
<p>The SPAN element is an inline element, and will not start on a new line and
only takes up as much width as necessary.</p>
</body>
</html>
6
AIIT - L