-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprint3-cultural.html
113 lines (106 loc) · 4.75 KB
/
sprint3-cultural.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
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
<html>
<head>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="styles/main.css" type="text/css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My blog</title>
</head>
<body>
<div id="bg-image">
<div class="container">
<div class="row">
<!--Logo-->
<div class="col-md-2 titlebox text-center" style="top: -160">
<a href="index.html">
<img class="logo" src="KJC.png" alt="KJC logo" width="200" height="200" style="top: 12em;">
</a>
</div>
<!--Sprint 1 Button-->
<div class="col-md-2 navigate-button dropdown">
<button class="dropbtn"><h2>Sprint 1</h2></button>
<div class="dropdown-content">
<a href="blog/sprint1-technical.html">Sprint 1 Technical</a>
<a href="sprint1-cultural.html">Sprint 1 Cultural</a>
</div>
</div>
<!--Sprint 2 Button-->
<div class="col-md-2 navigate-button dropdown">
<button class="dropbtn"><h2>Sprint 2</h2></button>
<div class="dropdown-content">
<a href="sprint2-technical.html">Sprint 2 Technical</a>
<a href="sprint2-cultural.html">Sprint 2 Cultural</a>
</div>
</div>
<!--Sprint 3 Button-->
<div class="col-md-2 navigate-button dropdown">
<button class="dropbtn"><h2>Sprint 3</h2></button>
<div class="dropdown-content">
<a href="sprint3-technical.html">Sprint 3 Technical</a>
<a href="sprint3-cultural.html">Sprint 3 Cultural</a>
</div>
</div>
<!--Sprint 4 Button-->
<div class="col-md-2 navigate-button dropdown">
<button class="dropbtn"><h2>Sprint 4</h2></button>
<div class="dropdown-content">
<a href="sprint4-technical.html">Sprint 4 Technical</a>
<a href="sprint4-cultural.html">Sprint 4 Cultural</a>
</div>
</div>
<!--Sprint 5 Button-->
<div class="col-md-2 navigate-button dropdown">
<button class="dropbtn"><h2>Sprint 5</h2></button>
<div class="dropdown-content">
<a href="sprint5-technical.html">Sprint 5 Technical</a>
<a href="sprint5-cultural.html">Sprint 5 Cultural</a>
</div>
</div>
<!--Horizontal Rule-->
<div class="row">
<div class="col-md-12">
<hr class="main">
</div>
</div>
</div>
<!--Main Content to change-->
<div class="row content">
<div class="col-md-12">
<h1>Emotional Intelligence</h1>
<blockquote>
<p>“In a very real sense we have two minds, one that thinks and one that feels”</p>
<footer> Daniel Goleman, <cite title="Source Title">Emotional Intelligence: Why It Can Matter More Than IQ</cite></footer>
</blockquote>
<h2>
What is Emotional Intelligence?
</h2>
<p>
Emotional intelligence is the ability to identify your own emotions and the emotions of others, and use this information to guide behaviour.
</p>
<h2>
How is it different to IQ?
</h2>
<p>
IQ measures a person's academic competency and reasoning ability. Whereas EQ is acquired and improved.
A person with good EQ can recognise, control and express one’s own emotions, perceive and assess other’s
emotions. On the contrary, a person with a high IQ can learn, understand and implement knowledge, and
possesses logical reasoning and abstract thinking.
</p>
<h2>
Why is it important?
</h2>
<p>
Having great emotional intelligence can be very important in a leadership role as you would want to
notice and understand the emotions and feelings of your team to better guide that behaviour to become
more efficient and productive. More than that, it allows you to understand yourself. Understand, why
am I angry? Why am I sad today? What’s making me happy? When you understand more about yourself you
can use that information to better evaluate situations and fit certain situations to you and those
around you.
</p>
</div>
</div>
</div>
</div>
</body>
</html>