-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmonthly.html
80 lines (75 loc) · 3.39 KB
/
monthly.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- ================ STYLES ================ -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
crossorigin="anonymous">
<title>HoroscopIO</title>
</head>
<body>
<div class="navigation" id="nav">
<center>
<div class="title">
<div class="person">
<div class="photo" id="photoNavBar">
<img src="assets/images/splashScreen.jpg" alt="">
</div>
<div class="name" id="name">
</div>
</div>
</div>
<div class="items">
<a href="mainPage.html"><li>Daily Horoscope</li></a>
<a href="monthly.html"><li>Monthly Horoscope</li></a>
<a href="profile.html"><li>Profile</li></a>
<a href="saved.html"><li>Saved</li></a>
</div>
<div class="buttonNav" id="buttonNav">
<i class="fas fa-arrow-left fa-lg fas-custom"></i>
</div>
</center>
</div>
<div class="bgDark"></div>
<div class="container-fluid no-m-p" data-swipe-threshold="20" data-swipe-timeout="500" data-swipe-ignore="false">
<i class="fas fa-ellipsis-h fasMainBtn " id="openNav"></i>
<img src="assets/images/mainPage.png" alt="" class="mainPageImage">
<div class="container">
<div class="row">
<div class="col-md-12 imgHoroscope">
<center><img src="assets/iconsHoroscope/taurus.png" alt=""></center>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center title-mainPage">
Here is your monthly horoscope
</div>
</div>
<div class="row">
<div class="col-md-12 text-center horoscope-mainPage">
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
laborum."
</div>
</div>
<div class="row">
<div class="col-md-12">
<center>
<button class="btn btn-primary saveBtn mt-20">Save it</button>
</center>
</div>
</div>
</div>
</div>
<!-- ================ SCRIPTS ================ -->
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/pure-swipe.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>