forked from DevbyHitanshu/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
138 lines (129 loc) · 6.52 KB
/
search.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
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
<!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">
<title>Document</title>
</head>
<body>
<div class="row">
<div class="col-md-5">
<div class="panel panel-default">
<div class="panel-heading">Search Results</div>
<table id="results" class="table table-striped table-hover">
<thead>
<table style="width: 50%;">
<tr>
<th>Index</th>
<th>Topic</th>
<th>Tagline</th>
</tr>
<tr>
<td>1</td>
<td>The French Revolution and the Idea of the Nation
</td>
<td>-The first clear expression of nationalism came with
the French Revolution in 1789.
</td>
</tr>
<td>2.4</td>
<td>The Revolutionaries
</td>
<td>During the years following 1815, the fear of repression drove many
liberal-nationalists underground.
</td>
</tr>
<td>3</td>
<td>The Age of Revolutions: 1830-1848
</td>
<td>As conservative regimes tried to consolidate their power, liberalism and nationalism came to be increasingly associated with revolution in many regions of Europe
</td>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
<div class="col-md-7">
<div class="panel panel-default">
<!-- <div class="panel-heading" id="title">Details</div> -->
<div class="row">
<div class="col-sm-4 col-md-4">
<img src="" class="well" id="poster"/>
</div>
<div class="col-md-8 col-sm-8">
<h4 class="desc">Description</h4>
<h5>The French Revolution and the Idea of the Nation
</h5>
<p>"The first clear expression of nationalism came with
the French Revolution in 1789. France, as you
would remember, was a full-fledged territorial state
in 1789 under the rule of an absolute monarch.
The political and constitutional changes that came
in the wake of the French Revolution led to the
transfer of sovereignty from the monarchy to a
body of French citizens. The revolution proclaimed
that it was the people who would henceforth
constitute the nation and shape its destiny.
From the very beginning, the French revolutionaries
introduced various measures and practices that
could create a sense of collective identity amongst
the French people. The ideas of la patrie (the
fatherland) and le citoyen (the citizen) emphasised
the notion of a united community enjoying equal rights under a
constitution. A new French flag, the tricolour, was chosen to replace
the former royal standard.
Regional dialects were discouraged and French, as it was spoken
and written in Paris, became the common language of the nation.
The revolutionaries further declared that it was the mission and the
destiny of the French nation to liberate the peoples of Europe
from despotism, in other words to help other peoples of Europe
to become nations.
However, in the areas conquered, the reactions of the local
populations to French rule were mixed. Initially, in many places such
as Holland and Switzerland, as well as in certain cities like Brussels,
Mainz, Milan and Warsaw, the French armies were welcomed as
harbingers of liberty. But the initial enthusiasm soon turned to hostility,
as it became clear that the new administrative arrangements did not
go hand in hand with political freedom. Increased taxation,
censorship, forced conscription into the French armies required to
conquer the rest of Europe, all seemed to outweigh the advantages
of the administrative changes."
</p>
<img src="use.jpeg" alt="Knowledge graph">
<ul id="crew">
</ul>
</div>
</div>
</div>
</div>
<style>
table, th, td {
border:1px solid black;
text-align: center;
margin: 50px 400px ;
font-size: 17px;
padding: 2px;
}
.desc{
font-size: 20px;
margin:2px;
}
.panel-heading{
font-size: 30px;
margin: 30px 30px 40px 10px;
text-decoration: underline;
padding: 5px;
}
.row{
margin-left: 20px;
text-align: center;
}
.panel{
margin-right: 30px;
text-align: center;
}
</style>
</body>
</html>