-
Notifications
You must be signed in to change notification settings - Fork 1
/
calc.html
50 lines (50 loc) · 1.82 KB
/
calc.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
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>Cool Cooking Calculator</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src = "pure.js"></script>
<script src = "calc.js"></script>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,700&subset=latin,cyrillic-ext,cyrillic' rel='stylesheet' type='text/css'>
<link rel = "stylesheet" href = "calc.css">
<script src="aFarkas-html5shiv-cec73ff/dist/html5shiv.js"></script>
</head>
<body>
<div id = "main">
<header>
<span><a href = "calc.html">Cool Cooking Calculator</a></span>
<span>Добавьте нужный вам продукт в миску, введите необходимый вес, и вы узнаете сколько калорий содержится в приготовленном блюде.</span>
</header>
<section id = "wrap">
<section id = "productcolumn">
<section>
<header>
<span></span>
<p></p>
</header>
<ul>
<li></li>
</ul>
</section>
</section>
<section id = "bowlcolumn">
<header>Итог:<span></span>
</header>
<section>
<ul>
<li>
<p></p>
<input>
<p></p>
<div></div>
</li>
</ul>
</section>
</section>
</section>
<footer>
</footer>
</div>
</body>
</html>