-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpl_00.html
45 lines (42 loc) · 1.62 KB
/
pl_00.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
43
44
45
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Angular2</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href="https://devmeetings.github.io/devmeeting-angular/css/bootstrap-theme-cyborg/cyborg.min.css"
rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-xs-12">
<header>
<h1 class="text-center">TypeScript</h1>
</header>
<hr>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
0.1 Utwórz tablicę z obiektami reprezentującymi produkt (nazwa, cena, opis, grafika). W osobnym pliku utwórz interfejs produktu i zaimportuj go stamtąd.
</h4>
</section>
<section>
<h4>
<span class="label label-success">obowiązkowe</span>
0.2 Interfejs zastąp klasą i zastąp utworzone w poprzednim zadaniu obiekty instancjami tej klasy.
</h4>
</section>
<section>
<h4>
<span class="label label-warning">warto zrobić</span>
0.3 Utwórz klasę produktu promowanego dziedziczącą po klasie produktu. Produkt promowany powinien do opisu dodać napis "PROMOWANY"
</h4>
</section>
</div>
</div>
</div>
<script src="https://devmeetings.github.io/devmeeting-angular/tasks.js"></script>
</body>
</html>