Free static website hosting
Use your name eg. eddiejaoude
With name eg. eddiejaoude.github.io
index.html with your name inside
eg. http://eddiejaoude.github.io
You have a website online
"HTML is a markup language for describing web documents (web pages)"
from W3Schools.com
from W3Schools.com
<h1> ... </h1>
<h6> ... </h6>
<p> ... </p>
<a> ... </a>
<a href="path/to/source"> ... </a>
<img src="path/to/image.png" alt="Picture description" />
<!-- ... -->
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<!-- My visible page -->
<body>
<h1>Eddie Jaoude</h1>
<p>Description of Eddie Jaoude ...</p>
</body>
</html>
from W3Schools.com
h1 {
color: red;
font-size: 40px;
}
p {
color: blue;
font-size: 12px;
}
img {
margin: 10px;
}
<p class="hero">Brief description of Eddie Jaoude ...</p>
<p>Full description of Eddie Jaoude ...</p>
p {
color: blue;
font-size: 12px;
}
p.hero {
color: red;
font-size: 20px;
}
Add the following inside the <head> section
<link rel="stylesheet" href="styles.css">
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<link rel="stylesheet" href="styles.css">
</head>
<!-- My visible page -->
<body>
<h1>Eddie Jaoude</h1>
<p class="hero">Brief description of Eddie Jaoude ...</p>
<p>Full description of Eddie Jaoude ...</p>
</body>
</html>
Bootstrap is the most popular HTML, CSS, and JS framework in the world for building responsive, mobile-first projects on the web.
Documentation http://v4-alpha.getbootstrap.com
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<link rel="stylesheet" href="styles.css">
</head>
<!-- My visible page -->
<body>
<h1>Eddie Jaoude</h1>
<p class="hero">Brief description of Eddie Jaoude ...</p>
<p>Full description of Eddie Jaoude ...</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" integrity="sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7" crossorigin="anonymous"></script>
</body>
</html>
Documentation http://v4-alpha.getbootstrap.com/components/alerts/
<div class="alert alert-success" role="alert">
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert alert-info" role="alert">
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
<div class="alert alert-warning" role="alert">
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
<div class="alert alert-danger" role="alert">
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
Results