-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimemanage.html
More file actions
149 lines (134 loc) · 3.55 KB
/
timemanage.html
File metadata and controls
149 lines (134 loc) · 3.55 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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">
<title>Time Management</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="mystyles.css">
</head>
<style>
body {
background-image: url("all-images/aboutus-pg.png");
}
section {
width: 350px;
height: 680px;
left: 80px;
top: 200px;
background: #FFFFFF;
box-shadow: 0px 5px 4px #D8D8D8;
border-radius: 20px;
margin-left: 10px;
margin-top: 100px;
opacity: 0.4;
}
section:hover {
opacity: 0.9;
}
.title1, .title2, .title3 {
background: #2e948a;
border-radius: 7px;
height: 40px;
font-family: Roboto;
font-size: 28px;
line-height: 39px;
text-align: center;
color: #FFFFFF;
}
.content1, .content2, .content3 {
padding: 20px 10px 10px 50px;
font-family: Roboto;
font-size: 26px;
line-height: 30px;
color: #00030D;
width: 300px;
height: 236px;
left: 476px;
top: 235px;
}
@media (min-width: 992px) {
.col-lg-5 {
float: left;
}
.col-lg-5 {
width: 33%;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.col-md-6 {
float: left;
}
.col-md-6 {
width: 50%;
}
}
@media (max-width: 767px) {
.col-sm-12 {
float: left;
}
.col-sm-12 {
width: 100%;
}
}
.timetitle {
padding-top: 80px;
text-align: center;
font-size: 30px;
color: rgb(255, 255, 255);
border-radius: 7px;
text-align: center;
}
</style>
<body>
<nav id="navbar">
<ul>
<li class="icon">
<img src="icon.png" alt="icon"></li>
<li><a href="index.html">Homepage</a></li>
<li><a href="prome.html">ProMe!</a></li>
<li><a href="aboutus.html">AboutUs</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class = "col-lg-5 col-md-6 col-sm-12">
<section>
<a href="https://clickup.com/">
<h2 class = 'title1'>ClickUp</h2>
</a>
<p class = 'content1'>
<br>
<img src="clickup.png" class="card-img-top" alt="ClickUp Logo">
<br>
Stay on track to hit your goals with targets for task completions, numbers, monetary values and more. Track progress in real-time connecting tasks to goals and keep your objectives organized with Goal Folders.
</p>
</section>
</div>
<div class = "col-lg-5 col-md-6 col-sm-12">
<section>
<a href="https://friday.app/">
<h2 class = 'title2'>Friday</h2>
</a>
<p class = 'content2'>
Check out management tips, tools, templates, and productivity hacks to start saving one day a week.
<br>
<br>
<img src="friday.png" class="card-img-bottom" alt="Friday Logo">
</p>
</section>
</div>
<div class = "col-lg-5 col-md-6 col-sm-12">
<section>
<a href="https://toggl.com/">
<h2 class = 'title3'>Toggl</h2>
</a>
<p class = 'content3'>
Track daily activities across different platforms; provide detailed insights and an opportunity to optimize workflow by identifying areas to improve.
<br>
<img src="toggl.png" class="card-img-bottom" alt="Toggl Logo">
</p>
</section>
</div>
</body>
</html>