Need to figure out how to make a site with HTML and CSS?
You're in the correct spot. In this aide, we show you every one of the means to get from a clear screen to a functioning site that is upgraded and very gorgeous simultaneously.
Above all, what is HTML and CSS?
Indeed, you could simply look into the two terms in Wikipedia, however those definitions aren't very peruser well disposed. We should work on things a piece:
HTML (Hypertext Markup Language) characterizes the design and substance of a site page – where things go, how they are spread out, and what's on the page
CSS (Cascading Style Sheets) characterizes the styling/show of a site page and the components on it
You can't actually have one without the other – the two work together to make up the last page, its plan, and the substance that is on it.
Note; when we say "a page," what we mean is a solitary HTML report – a solitary page that is important for your site. While, "a site" is the finished thing – your entire website with all its individual site pages.
Source Codes:-
HTML FILE (save as index.html)
0
<!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">
<title>Animated bootstrap website design</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="nav-bar">
<img src="logo.png" class="logo">
<h3>Codewithharsh</h3>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Services</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
<button class="btn">Register Now</button>
</div>
<div class="content">
<h1>Enjoy This <br>Website</h1>
<h4>Boost Your Learning Skills</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing<br>
elit, sed do eiusmod tempor incididunt ut labore et dolore magna<br>
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
</p>
<div class="content2">
<button class="btn2">
Welcome
</button>
<div class="social-media">
<a href=""><i class="fa fa-instagram"></i></a>
<a href=""><i class="fa fa-pinterest"></i></a>
<a href=""><i class="fa fa-google"></i></a>
<a href=""><i class="fa fa-youtube"></i></a>
<a href=""><i class="fa fa-github"></i></a>
</div>
</div>
</div>
<img src="img1.png" class="image">
</div>
</body>
</html>
CSS File (save as index.html)
To Download Images Click here
Post a Comment