Create Fashion Blog
using HTML
Who am I?
Ranojit Kumar Mohonta
Rangpur Chapter Leader
RanojitKumar
What we will cover today?
● HTML Basics
● Build Fashion Blog
What is HTML?
HyperText Markup Language
<h1>Hello World</h1>
HTML Anatomy
The Body
<body>
<p>"Life is very short and what we have to do must be done in
the now." - Audre Lorde</p>
</body>
HTML Structure
<body>
<h1>Hello World</h1>
<p>This paragraph is a child of the body element</p>
<div>
<p>This paragraph is a child of the div element and a grandchild of the body
element</p>
</div>
</body>
Headings
<h1>Heading 1</h1>
<h2>Heading 1</h2>
<h3>Heading 1</h3>
<h4>Heading 1</h4>
<h5>Heading 1</h5>
<h6>Heading 1</h6>
Divs
<div>
<h1>Why use divs?</h1>
<p>Great for grouping elements!</p>
</div>
Attributes
<div id="intro">
<h1>Introduction</h1>
</div>
Styling Text
<p><strong>The Nile River</strong> is the
<em>longest</em> river in the world, measuring over 6,850
kilometers long (approximately 4,260 miles).</p>
Images
<img src="image-location.jpg" />
Links
<a href="https://www.codecademy.com">Codecademy</a>
HTML Page Structure
<!DOCTYPE html>
<html>
<head>
<title> HTML Page </title>
</head>
<body>
<h1>An Insider's Guide to NYFW</h1>
<p>This is a paragraph.</p>
</body>
</html>
Fashion Blog

Create Fashion Blog using HTML