forked from emrlkem/little_lemon_receipt_maker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (25 loc) · 962 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<meta name="author" content="Ikwuka A. Ch. Okoye">
<meta name="description" content="Create receipts in the console for lemons bought - using JavaScript">
<title>Little Lemon Receipt Maker</title>
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="./styles.css">
<!-- Favorite icon -->
<link rel="icon" type="icon/jpg" href="./images/front-end_icon.jpg">
</head>
<body>
<h1>Welcome to Little Lemon Receipt Maker</h1>
<h2>
Please press the <strong>f12</strong> key in your desktop to
open the <em>Developer Tools</em> in your favorite browser.
</h2>
<!-- Custom JavaScript -->
<script src="./index.js"></script>
</body>
</html>