-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexDashboardJS.html
66 lines (62 loc) · 2.37 KB
/
indexDashboardJS.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
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- FAVICON -->
<link rel="shortcut icon" type="image/png" sizes="32x32" href="KraczyCarouselLogo.png">
<link rel="shortcut icon" type="image/png" sizes="96x96" href="KraczyCarouselLogo.png">
<link rel="shortcut icon" type="image/png" sizes="16x16" href="KraczyCarouselLogo.png">
<!-- 000000000000000000000000000000000 -->
<title>KrazyCarousel | JS Dashboard page</title>
<link rel="stylesheet" href="dashboardStyle.css">
</head>
<body class="bodyArea">
<a href="index.html" class="logo">Krazy<span class="logoSpan">Carousel</span></a><br>
<a class="codeChoice" href="indexDashboardChoice.html">Choose Again</a>
<div class="container">
<!-- CARD ZERO -->
<div class="card cardZero">
<div class="content">
<a class="codeChoice" href="indexDashboardChoice.html">Choose Again</a>
</div>
</div>
<!--CARD ONE-->
<div class="card">
<div class="content">
<h2>01</h2>
<h3>Carousel No. 1 </h3>
<p>Carousel with No Captions in JS.</p>
<a href="indexJ1.html">View It</a>
</div>
</div>
<!--CARD TWO-->
<div class="card">
<div class="content">
<h2>02</h2>
<h3>Carousel No. 2 </h3>
<p>Carousel with Captions on Image in JS.</p>
<a href="indexJ2.html">View It</a>
</div>
</div>
<!--CARD THREE-->
<div class="card">
<div class="content">
<h2>03</h2>
<h3>Carousel No. 3 </h3>
<p>Carousel with Captions on Top in JS.</p>
<a href="indexJ3.html">View It</a>
</div>
</div>
<div class="card">
<div class="content">
<h2>04</h2>
<h3>Carousel No. 4 </h3>
<p>Carousel with Captions on Bottom in JS.</p>
<a href="indexJ4.html">View It</a>
</div>
</div>
</div>
</body>
</html>