Skip to content

Instantly share code, notes, and snippets.

View shifatul-i's full-sized avatar
🙃
Gitting

Shifatul Islam (Sif) shifatul-i

🙃
Gitting
View GitHub Profile
body {
background-color: powderblue;
margin: 0;
}
h1 {
color: red;
}
h2 {
body {
background-color: powderblue;
margin: 0;
}
h1 {
color: red;
}
h2 {
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1 id="name"><b>Your Name</b></h1>
<p><i>About yourself.</i></p>
body {
background-color: powderblue;
}
h1 {
color: red;
}
h2 {
color: blue;
body {
background-color: powderblue;
}
h1 {
color: red;
}
h2 {
color: blue;
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1><b>Your Name</b></h1>
<p><i>About yourself.</i></p>
<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1 {color: red;}
h2 {color: blue;}
h4 {color: brown;}
p {color: green;}
</style>
<h1 style="color:Red;"><b>Your Name</b></h1>
<p style="color:Green;"><i>About yourself.</i></p>
<div style="background-color:yellow;">
<h1 style="color:Red;">Your Name</h1>
<p style="color:Green;">About yourself.</p>
<a href="your url">your link text</a>
<img src="profile_pic.jpg" alt="Profile Picture">
<p style="color:Blue;">This is fun.</p>
<div>
<h1>Your Name</h1>
<p>About yourself.</p>
<a href="your url">your link text</a>
<img src="profile_pic.jpg" alt="Profile Picture">
</div>