forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (118 loc) · 4.92 KB
/
index.html
File metadata and controls
124 lines (118 loc) · 4.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<header class="header">
<h1>Positive Psychology</h1>
<p>
Positive psychology is a branch of psychology focused on the character strengths
and behaviors that allow individuals to build a life of meaning and purpose—to move
beyond surviving to flourishing.
Theorists and researchers in the field have sought to identify the elements of a good life.
They have also proposed and tested practices for improving life satisfaction and well-being.
</p>
</header>
<main>
<section class="section1">
<article class="article">
<h2>What Is Positive Psychology?</h2>
<p>
Positive psychology is one of the newest branches of psychology to emerge.
This particular area of psychology focuses on how to help human beings prosper
and lead healthy, happy lives. While many other branches of psychology
tend to focus on dysfunction and abnormal behavior, positive psychology is centered
on helping people become happier.
</p>
<p>Positive psychology is designed to "complement and extend the problem-focused
psychology that has been dominant for decades," explained the late Christopher Peterson,
author of "A Primer in Positive Psychology" and professor at the University of Michigan,
in a 2008 article published in Psychology Today.
</p>
<button class="buttonarticle">Read More</button>
</article>
<article class="article">
<h2>Levels</h2>
<p>
Positive psychology is often referred to three different levels such as subjective level,
individual level and group level.
</p>
<p>
Positive psychology is often referred to three different levels such as subjective level,
individual level and group level.
</p>
<p>
Positive psychology is often referred to three different levels such as subjective level,
individual level and group level.
</p>
<button class="buttonarticle">Read More</button>
</article>
<article class="article">
<h2>Uses</h2>
<p>
Positive psychology can have a range of real-world applications in areas including education,
therapy, self-help, stress management, and workplace issues.
Using strategies from positive psychology, teachers, coaches, therapists, and employers
can motivate others and help individuals understand and develop their personal strengths.
Some of the major topics of interest in positive psychology include:
<ul>
<li>Gratitude</li>
<li>Hope</li>
<li>Optimism</li>
<li>Positive thinking</li>
<li>Resilience</li>
</ul>
</p>
<button class="buttonarticle">Read More</button>
</article>
</section>
<section class="section2">
<article class="article2">
<h2>History</h2>
<p>
After the Second World War, the focus of psychology was on treating abnormal
behaviors and the resulting mental illnesses.
</p>
<p>
Dissatisfied with this approach, humanist psychologists, such as Abraham Maslow,
Carl Rogers, and Eric Fromm helped renew interest in the more positive
aspects of human nature.
</p>
</article>
<article class="article2">
<h2>Popularity</h2>
<p>
It's one of the most desired web frameworks currently in use.
Multiple industry-leading apps are built with React.
</p>
<p>
It's a proven technology that's capable of producing
enterprise-class solutions.
</p>
</article>
</section>
</main>
<footer class="footer">
<p>© Mustafa's ınterest!</p>
<a
href="https://ppc.sas.upenn.edu/"
>POSITIVE PSYCHOLOGY CENTER</a
>
</footer>
</body>
</html>