Commit d1a95fca authored by Armands Klecetnikovs's avatar Armands Klecetnikovs

Merge branch 'page_two'

parents 80951149 6d009e27
<!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>Page two</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, h3 is third largest heading tag -->
<h3>My name is [Mārcis] and this is primitive web page</h3>
<p>
This is very primitive web page with one heading and one paragraph.
</p>
</body>
</html>
......@@ -11,3 +11,17 @@ h1{
margin-top: 20%;
color: #663399;
}
h3{
display: block;
margin-top: 20%;
color: #FF69B4;
font-size: 80px;
text-align: center;
}
p{
text-align: center;
font-size: 40px;
font-weight: bold;
}
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