-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
61 lines (59 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Cakely</title>
<link rel="stylesheet" href="./css/style.css" media="screen" title="no title" charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Raleway:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://npmcdn.com/[email protected]/dist/flickity.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.imgliquid/0.9.944/imgLiquid-min.js"></script>
<script src="https://npmcdn.com/[email protected]/dist/flickity.pkgd.min.js"></script>
</head>
<body>
<main>
<section class="ck-carousels">
<div class="ck-main-carousel">
</div>
<div class="ck-thumb-carousel">
</div>
</section>
<div class="ck-navbar">
<a class='logo' href="#"><img src="./assets/logo-lg.png" /></a>
</div>
<section class="ck-hero">
<div class="ck-hero-content">
<img src="assets/logo-lg.png">
<p>The one-click cake shop!</p>
<button>Browse Cakes</button>
</div>
</section>
<div class="ck-cover"></div>
</main>
<aside class="ck-sidebar">
<form class="order-form">
<h1 class="title"></h1>
<span></span>
<hr />
<p>Choose cake size </p>
<label>
<input type="radio" name="size" class="size" value='3' />
Max
</label>
<label>
<input type="radio" name="size" class="size" value='2' />
Midi
</label>
<label>
<input type="radio" name="size" id="default" class="size" value='1' checked />
Mini
</label>
<hr />
<p class="amount"></p>
<hr />
<button role="submit">BUY</button>
<!-- <input type="submit" value="BUY"> -->
</form>
</aside>
<script type='text/javascript' src='./js/script.js'></script>
</body>
</html>