Created
June 8, 2017 12:35
-
-
Save ranjanmb/3cc3efdf225bb414f26c92cc6bc87664 to your computer and use it in GitHub Desktop.
My first html // source https://jsbin.com/focate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>My first html</title> | |
</head> | |
<body> | |
<h1>This is my first page</h1> | |
<p> | |
This is a paragraph. | |
<br>going to next line</> | |
<h2>My hobbies are:</h2> | |
<ul> | |
<li>Gaming</li> | |
<li>Editing</li> | |
<li>Coding</li> | |
</ul> | |
<ol> | |
<li>Narcos</li> | |
<li>BB</li> | |
<li>GoT</li> | |
</ol> | |
</p> | |
<h2>My picture :</h2> | |
<img width=100 alt="Game of throne" src=https://vignette2.wikia.nocookie.net/gameofthrones/images/0/0b/Season4-GOT-TYRIONposter.jpg/revision/latest?cb=20141112012227> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment