Skip to content

Instantly share code, notes, and snippets.

View abhishekjakhar's full-sized avatar
:octocat:

Abhishek Jakhar abhishekjakhar

:octocat:
View GitHub Profile
@abhishekjakhar
abhishekjakhar / normalize.css
Created October 28, 2018 16:05
Normalize CSS
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
* 1. Set default font family to sans-serif.
* 2. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
font-family: sans-serif; /* 1 */
@abhishekjakhar
abhishekjakhar / main.css
Last active March 6, 2024 05:17
HTML Forms CSS File
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
color: #333;
background-color: #f8f8f9;
@abhishekjakhar
abhishekjakhar / index.html
Created October 28, 2018 08:50
<nav> Element
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<header>
<h1>HTML - A short guide</h1>
<p>A simple blog about learning HTML</p>
<nav>
@abhishekjakhar
abhishekjakhar / index.html
Created October 28, 2018 07:06
<article> Tag
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<header>
<h1>HTML - A short guide</h1>
<p>A simple blog about learning HTML</p>
@abhishekjakhar
abhishekjakhar / index.html
Created October 27, 2018 20:31
HTML Entity
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<h1>&lt;Heading&gt;</h1>
</body>
</html>
@abhishekjakhar
abhishekjakhar / index.html
Created October 26, 2018 16:02
Horizontal Rule <hr/>
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<section>
<h2>This is section 1</h2>
<p>You will see a horizontal line below this section which is created using a horizontal rule element.</p>
</section>
@abhishekjakhar
abhishekjakhar / index.html
Created October 26, 2018 15:51
Breaks In Content (<br/>
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<address>
Learn HTML </br>
2018 very fast </br>
City, State 123456
@abhishekjakhar
abhishekjakhar / index.html
Created October 26, 2018 15:32
Figure & Figcaption Element
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<figure>
<img src="https://picsum.photos/360/360/?random" alt="Random"/>
<figcaption>Random Image</figcaption>
</figure>
@abhishekjakhar
abhishekjakhar / index.html
Last active October 26, 2018 15:40
Text Level Elements
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<p><strong>Email:</strong> [email protected]</p>
<p><strong>Phone:</strong> 123-456-7890</p>
<em>This is an Em Element</em><br/>
<b>This is an Bold Element</b><br/>
@abhishekjakhar
abhishekjakhar / index.html
Last active October 16, 2018 17:23
HTML Images
<!DOCTYPE html>
<html>
<head>
<title>HTML - A short guide</title>
</head>
<body>
<img src="https://picsum.photos/940/640/?random" alt="Nature" title="Nature"/>
</body>
</html>