Created
August 10, 2018 21:33
-
-
Save riyaadazad/8a4bdd9ce6a14ecb70b7a653be0fceaf to your computer and use it in GitHub Desktop.
A template provided by "w3schools.com" utilizing the W3.CSS stylesheet
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> | |
<head> | |
<title>Webpage Template</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> | |
<!--<link rel="stylesheet" href="w3.css">--> | |
<!--If you put w3.css in a subfolder, add the folder name between slashes: | |
<link rel="stylesheet" href="/foldername/w3.css">--> | |
<!--If you place w3.css at the root of your web, add a slash: | |
<link rel="stylesheet" href="/w3.css">--> | |
</head> | |
<body> | |
<h1>Hello World</h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment