-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexDashboardChoice.html
45 lines (40 loc) · 1.67 KB
/
indexDashboardChoice.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 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 -->
<link rel="stylesheet" href="dashboardStyle.css">
<title>KrazyCarousel | Choose Dashboard page</title>
<link rel="stylesheet" href="dashboardStyle.css">
<link rel="stylesheet" href="dashboardChoiceStyle.css">
</head>
<body class="bodyArea">
<a href="index.html" class="logo">Krazy<span class="logoSpan">Carousel</span></a>
<div class="container ">
<!--CARD ONE-->
<div class="card circularCard">
<div class="content">
<h2>CSS</h2>
<h3>I am a CSS person</h3>
<p>Carousel with code implementation in CSS.</p>
<a href="indexDashboard.html">Let's Go</a>
</div>
</div>
<!--CARD TWO-->
<div class="card circularCard">
<div class="content">
<h2>JS</h2>
<h3>I am a JS person </h3>
<p>Carousel with code implementation in JS.</p>
<a href="indexDashboardJS.html">Let's Go</a>
</div>
</div>
</div>
</body>
</html>