forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
33 lines (29 loc) · 762 Bytes
/
sample.html
File metadata and controls
33 lines (29 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./css/main.css">
<title>Assignment - 3</title>
</head>
<body>
<div class="container">
<div class="middle">
<h2>
Useful links
</h2>
<ul id="links">
<li>
<a href="https://www.w3schools.com/css/default.asp" target="_blank">CSS tutorial- w3schools</a>
</li>
<li>
<a href="https://pixabay.com/" target="_blank">Free Images</a>
</li>
</ul>
</div>
</div>
<!--JS link-->
<script src="./js/main.js"></script>
</body>
</html>