-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 2.12 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<title>Adauga in lista ta</title>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<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=Oswald:wght@200;300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
</head>
<body>
<div class="container">
<div class="social-icons">
<a href="https://www.facebook.com/timis.alin.01" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/timisalin01/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/timisalin/" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/timisalin01" target="_blank"><i class="fab fa-github"></i></a>
</div>
<img src="assets/logo.gif" alt="logo shoop">
<input type="text" id="input-field" placeholder="Nume produs">
<span id="error-message"></span>
<button id="add-button">Adauga produs</button>
<ul id="shopping-list">
</ul>
</div>
<script src="index.js" type="module"></script>
</body>
</html>