-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtml
120 lines (119 loc) · 3.65 KB
/
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
<html>
<head>
<title>Background Image</title>
<link rel="stylesheet" href="BG img css.css">
</head>
<body>
<marquee>Ways to greet people</marquee>
<hr color="White">
<p>
  <button class="button button1">English</button>
  <button class="button button1">French</button>
  <button class="button button1">Spanish</button>
  <button class="button button1">German</button>
  <button class="button button1">Portuguese</button>
  <button class="button button1">Hindi</button>
  <button class="button button1">Russian</button>
  <button class="button button1">Chinese</button>
</p>
<p>
  <button class="button button1">Bengali</button>
  <button class="button button1">Japanese</button>
  <button class="button button1">Indonesian</button>
  <button class="button button1">Arabic</button>
  <button class="button button1">Ukrainian</button>
  <button class="button button1">Urdu</button>
  <button class="button button1">Polish</button>
  <button class="button button1">Greek</button>
</p>
<p>
  <button class="button button1">Gujarati</button>
  <button class="button button1">Punjabi</button>
  <button class="button button1">Odia</button>
  <button class="button button1">Vietnamese</button>
  <button class="button button1">Sanskrit</button>
  <button class="button button1">Korean</button>
  <button class="button button1">Marathi</button>
  <button class="button button1">Czech</button>
</p>
<center>
<table bgcolor="Black" style="width:70%">
<tr class="English">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="French">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="Spanish">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="German">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="Portuguese">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="Hindi">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="Russian">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="Chinese">
<th>Hello</th>
<th>Good Morning</th>
<th>How are you</th>
<th>Bye</th>
</tr>
<tr class="English">
<th colspan="4">English</th>
</tr>
<tr class="French">
<th colspan="4">French</th>
</tr>
<tr class="Spanish">
<th colspan="4">Spanish</th>
</tr>
<tr class="German">
<th colspan="4">German</th>
</tr>
<tr class="Portuguese">
<th colspan="4">Portuguese</th>
</tr>
<tr class="Hindi">
<th colspan="4">Hindi</th>
</tr>
<tr class="Russian">
<th colspan="4">Russian</th>
</tr>
<tr class="Chinese">
<th colspan="4">Chinese</th>
</tr>
</table>
</center>
<center><img src="greet.png" width="1300" height="150"></center>
</body>
<script>
</script>
</html>