-
Notifications
You must be signed in to change notification settings - Fork 0
/
07_using_images.html
87 lines (79 loc) · 3.63 KB
/
07_using_images.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
<!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">
<meta name="Lesson aim" content="Learn how to use links">
<title>Links</title>
</head>
<body>
<!-- Using links, ref: https://ryanstutorials.net/html-tutorial/html-images.php -->
<h1>
<center>*<u>American activists</u>*</center>
</h1>
<p>
This is a paragraph about activists. <b>Martin Luther King(MLK)</b> aimed at <i>integration</i> while <b>Malcolm
X</b>
wanted <i>separation</i>
but later in life he travelled and changed his beliefs about separation
</p>
<!-- internal-page links -->
<a href="#mxdet">Malcolm X details, </a>
<a href="#mlkdet">Martin_Luther_King_Jr details</a>
<p>
Another paragraph though a closing one, :-).
In the 19<sup>th</sup> century, <a href="https://en.wikipedia.org/wiki/Frederick_Douglass">Frederick
Douglass</a> and John Brown aimed at the same though John was radical in
his
implementation.
</p>
<hr>
<a id="mxdet"></a>
<h3 title="some MLK paragraph">
More about Malcolm X
</h3>
<p>
In 1963 there were deep tensions between <a href="https://en.wikipedia.org/wiki/Malcolm_X"
title="wiki about MX">Malcolm</a> and
Elijah Muhammad over the political direction of the Nation.
Malcolm urged that the Nation become more active in the widespread civil rights protests instead of just being a
critic on the sidelines. Muhammad’s violations of the moral code of the Nation further worsened his relations
with Malcolm, who was devastated when he learned that Muhammad had fathered children by six of his personal
secretaries, two of whom filed paternity suits and made the issue public.
<p>
Malcolm X:
</p>
<img src="imgs/malcolmx.jpg" alt="Malcolm X close-up" height="300px">
</p>
<a id="mlkdet"></a>
<h3>
More about MLK
</h3>
<p>
Martin Luther King Jr:
</p>
<img src="imgs/mlking.jpg" alt="MLK close-up">
<p title="some MLK paragraph">
While in Boston, <a href="https://en.wikipedia.org/wiki/Martin_Luther_King_Jr." title="wiki about MLK">King</a>
met Coretta Scott, a
native Alabamian who was studying at the New England Conservatory of
Music. They were married in 1953 and had four children. King had been pastor of the Dexter Avenue Baptist Church
in Montgomery, Alabama, slightly more than a year when the city’s small group of civil rights advocates decided
to contest racial segregation on that city’s public bus system following the incident on December 1, 1955, in
which Rosa Parks, an African American woman, had refused to surrender her bus seat to a white passenger and as a
consequence was arrested for violating the city’s segregation law. Activists formed the Montgomery Improvement
Association to boycott the transit system and chose King as their leader. He had the advantage of being a young,
well-trained man who was too new in town to have made enemies; he was generally respected, and it was thought
that his family connections and professional standing would enable him to find another pastorate should the
boycott fail.
</p>
<p>
For more information: Contact us at this email -> <a href="mailto:kapooormanav@gmail.com">The hackers!</a>
</p>
<p>
Our team:
</p>
<img src="imgs/woman.jpeg" alt="activist hackers">
</body>
</html>