Commit 10a43494 authored by Mārcis Koloda's avatar Mārcis Koloda

Initial commit

parents
body{
height: 100%;
background-image: url('../img/doodles.png');
background-repeat: repeat;
}
h1{
display: block;
font-size: 120px;
text-align: center;
margin-top: 20%;
color: #663399;
}
<!doctype html>
<html lang="en">
<!-- HEAD, this part will not be shown in browser -->
<head>
<!-- Pages character encoding -->
<meta charset="utf-8">
<!-- Pages title that will be show in tab -->
<title>First webpage</title>
<!-- Pages meta tags, containing description and author. Will not be shown -->
<meta name="description" content="First webpage in WWW Technologies course">
<meta name="author" content="Mārcis Koloda">
<!-- Link to CSS file -->
<link rel="stylesheet" href="css/main.css">
</head>
<!-- BODY, this part will be shown in browser -->
<body>
<!-- HEADING TAG, h1 is largest heading tag -->
<h1>HELLO WORLD</h1>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment