-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
22 lines (22 loc) · 899 Bytes
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<title>About - HTML</title>
<meta charset="utf-8">
<meta name= "author" content="Dijana Đuran">
<meta name="description" content="This is my frontend cheat sheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link href="prism.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="wrapper">
<h1>About HTML?</h1>
<a href="./index.html">To Home</a>
</div>
<script src="prism.js"></script>
</body>
</html>