-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (146 loc) · 6.9 KB
/
index.html
File metadata and controls
173 lines (146 loc) · 6.9 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Time Management Through Observation</title>
<style>
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f4f4f9;
padding: 20px;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 15px 20px;
text-align: center;
}
header h1 {
font-size: 2em;
}
nav {
margin-top: 10px;
}
nav a {
color: #fff;
margin: 0 10px;
text-decoration: none;
position: relative;
padding-bottom: 5px;
}
/* Hover effect for links */
nav a:hover {
text-decoration: none;
color: #4CAF50;
}
nav a:hover::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: #4CAF50;
bottom: 0;
left: 0;
}
section {
margin: 20px 0;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease-in-out;
}
/* Hover effect for different sections */
#introduction:hover {
background-color: #e1f5fe;
}
#stages:hover {
background-color: #fce4ec;
}
#preliminary-research:hover {
background-color: #fff3e0;
}
#reflection:hover {
background-color: #e8f5e9;
}
#conclusion:hover {
background-color: #fffde7;
}
h2 {
color: #333;
margin-bottom: 10px;
font-size: 1.6em;
}
p, ul {
margin-bottom: 10px;
}
ul li {
margin: 8px 0;
}
footer {
text-align: center;
margin-top: 20px;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Learning Time Management through Observation</h1>
<nav>
<a href="#introduction">Introduction</a>
<a href="#stages">Learning Stages</a>
<a href="#preliminary-research">Preliminary Research</a>
<a href="#reflection">Personal Reflection</a>
<a href="#conclusion">Conclusion</a>
</nav>
</header>
<section id="introduction">
<h2>Introduction</h2>
<p>Bandura's Social Learning Theory underlines that new behaviors are acquired by observing a model of the behavior, and the vicarious reinforcement one gets after performing the behavior. In this project, I will explore how I learned time management by observing and then implementing the strategies used by highly organized peers and mentors.</p>
</section>
<section id="stages">
<h2>Observational Context</h2>
<p>I observed peers and seniors during group study sessions and projects. I also learned from mentors by attending tutorials and workshops, where they shared techniques for prioritizing tasks, systematically organizing work on a calendar, and setting weekly goals. I adopted these techniques by creating my to-do list and setting personal goals, which made a huge difference in organizing my schedule.</p>
<h2>Detailed Analysis of Chosen Skill</h2>
<h3>1. Use of To-Do Lists and Task Prioritization</h3>
<p>Often, I noticed peers making to-do lists and prioritizing tasks based on deadlines. Observing them inspired me to organize tasks similarly, helping me reduce last-minute stress and balance work and study effectively.</p>
<h3>2. Using Digital Tools for Scheduling</h3>
<p>I saw some students use digital tools like Google Calendar to organize tasks and deadlines, setting reminders for each. I began doing the same, setting monthly goals and reminders, which visually organized my schedule and made it easy to plan at a glance.</p>
<h3>3. Observing Role Models</h3>
<p>Observing instructors and senior students with structured study routines inspired me to create a similar schedule. This disciplined approach reduced procrastination and improved productivity, allowing me to manage other responsibilities alongside academics.</p>
</section>
<section id="preliminary-research">
<h2>Preliminary Research</h2>
<ul>
<li><strong>1.</strong> Simons, P., & Roth, K. (2024). How digital tools enable observational learning: A study on time management. Journal of Educational Technology, 16(2), pp. 98-115.
<br>This study discusses how learners use digital platforms and videos to learn acquisition of time management skills explained by Bandura's theory of imitation and modeling.</li>
<li><strong>2.</strong> Capdeferro, N., Marín, V. I., & Gros, B. (2024). Self-regulated learning in online environments: Observational strategies and time management. Journal of Educational Psychology, 18(1), 77-92.
<br>This article aims to discuss how students develop time management skills through the observation of effective role models in a digital learning environment. It emphasizes the role that consistent exposure and imitation may play in developing productive habits.</li>
<li><strong>3.</strong> Horsburgh, J., & Ippolito, K. (2024). Using social learning theory to develop transferable skills through role models. BMC Medical Education, 24(3), 45-67.
<br>This study showed how observational learning in both clinical and academic settings can enhance the learner's development of time management skills. This further supports Bandura's idea of how behaviors are molded through modeling and reinforcement over a period.</li>
</ul>
</section>
<section id="reflection">
<h2>Personal Reflection</h2>
<p>Implementing these time management strategies has significantly improved my academic performance and overall productivity. By developing these skills, I am now able to manage my responsibilities more effectively, reducing stress and creating a better work-life balance.</p>
</section>
<section id="conclusion">
<h2>Conclusion</h2>
<p>Through this journey, I learned that observational learning is a powerful way to adopt productive habits. I now understand how time management can be acquired by observing others and how these skills play a crucial role in personal and academic success.</p>
</section>
<footer>
<p>© 2024 Time Management Project</p>
</footer>
</body>
</html>