forked from cifo-training/basics-CSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex5.html
More file actions
64 lines (58 loc) · 2.06 KB
/
Copy pathindex5.html
File metadata and controls
64 lines (58 loc) · 2.06 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
<!DOCTYPE html>
<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">
<title>Studying advice</title>
<link rel="stylesheet" href="css/mycss5.css">
</head>
<body>
<div class="Principal">
<header>
<div class="Cabecera">
Studying Advice
</div>
</header>
<main>
<p>
Much of the advice people give about studying is wrong.
</p>
<p>
Always study in the same place?.
</p>
<p class="Wrong">
Wrong!.
</p>
<p>
Study one topic intensively before going on the next?.
</p>
<p class="Wrong">
Wrong!.
</p>
<p>
Here are some study tips that are based on <b>actual research</b>.
</p>
<blockquote>From <i>Forget What You Know About Good Study Habits</i>, by Benedict Carey, published in the <i>New York Times</i> on September 6, 2010.</blockquote>
<h2>Alternate study environments</h2>
<p>
Study in the library, in the coffee shop, in your room,... Varying the place you study helps tou remember more.
</p>
<h2>Mix content</h2>
<p>
Study a bit of this, abit of that, some this again, some of the other. Switching content helps you remember more.
</p>
<h2>Space study sessions</h2>
<p>
Three one-hour sessions is more effective than one three-hour session.
</p>
<h2>Self-testing</h2>
<p>
Test yorself, or have a buddy do it. It helps you know how well you know.
<br /><br />
CoreDogs is good at this. That's what the review system is for.
</p>
</main>
</div>
</body>
</html>