-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 952 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
<!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">
<meta name="description" content="Projekt aplikacji do tworzenia i zarządzania notatkami">
<title>Sticky Notes | Damian Fiałkiewicz Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://use.fontawesome.com/cddeb52015.js"></script>
</head>
<body>
<header>
<h1>Sticky Notes</h1>
</header>
<div class="wrapper">
<div id="cards-container"></div>
<button type="button" class="fa fa-plus" id="btn-create"></button>
</div>
<footer>
<p>Developed by <a href="/">Damian Fiałkiewicz</a></p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>