Scss basics
This commit is contained in:
50
WebDevelopment/02-CssBasics/index.htm
Normal file
50
WebDevelopment/02-CssBasics/index.htm
Normal file
@ -0,0 +1,50 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>My website</title>
|
||||
|
||||
<link href="/style.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div>
|
||||
|
||||
<div class="NavBar m0">
|
||||
<h1 class="m0">My heading 1</h1>
|
||||
<h2 class="m0" id="SpecialHeading">My heading 2</h2>
|
||||
<h3 class="m0">My heading 3</h3>
|
||||
|
||||
<p>Paragraph inside div</p>
|
||||
<p>Paragraph inside div</p>
|
||||
<p>Paragraph inside div</p>
|
||||
<p>Forth paragraph inside div</p>
|
||||
|
||||
<span>my span</span>
|
||||
|
||||
<div>
|
||||
|
||||
<div>
|
||||
<span>my embedded span</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p>This is right after the nav bar</p>
|
||||
<p>This is right after the nav bar</p>
|
||||
<p>This is right after the nav bar</p>
|
||||
|
||||
<span>my span</span>
|
||||
|
||||
</div>
|
||||
|
||||
<p>My text is in here :)</p>
|
||||
|
||||
<p>This is a <strong>strong</strong> sentence with some <em>emphasis</em> included</em></p>
|
||||
|
||||
<p>This is a link to <a href="http://www.google.co.uk">Google</a> go on, click it</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user