-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcard.html
118 lines (101 loc) · 3.84 KB
/
card.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta content="" name="description" />
<meta content="" name="keywords" />
<title>Menses</title>
<!--Favicon Icom-->
<link rel="icon" type="image/x-icon" href="assets/favicon-icon.png" />
<!--Bootstrap Custom CSS-->
<link rel="stylesheet" href="./dist/css/main.css" crossorigin="anonymous" />
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="mystyle.css" />
<!--icon-->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
<!--Bootstrap Icon-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
<!--Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">Menses</a></h1>
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto active" href="main.html"
><i class="bi bi-house-door"></i> Home</a
>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
<!-- .navbar -->
</div>
</header>
<!-- End Header -->
<section id="cards">
<div>
<h2 class="top">Quick health tips!</h2>
<div class="block text-center">
<div class="quote-box block__main block__front">
<span class="quote">
<!-- <i class="fas fa-2x fa-quote-left"></i> -->
<span class="text"> Quote To be Displayed Here </span>
</span>
<div class="title">Title to be Displayed Here</div>
<a class="new-quote btn btn-default" onclick="newQuote()"
>New Tip!</a
>
</div>
<div class="quote-box block__main block__back">
<span class="quote">
<!-- <i class="fas fa-2x fa-quote-left"></i> -->
<span class="text"> Tip To be Displayed Here </span>
</span>
<div class="title">Title to be Displayed Here</div>
<a class="new-quote btn btn-default" onclick="newQuote()"
>New Tip!
</a>
</div>
</div>
</div>
</section>
<!--Crads JavaScript-->
<script src="card.js"></script>
<!--Bootstrap JQuery and Javascript-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
</body>
</html>