-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (165 loc) · 5.23 KB
/
index.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!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>Introduction Of CSS</title>
</head>
<style>
h1{
width: 600px;
background-color: aqua;
}
p{
width: 700px;
background-color: #410a0a;
color: #ffff;
text-transform: capitalize;
}
th{
background-color: #410a0a;
color: #ffffff;
}
td{
background-color: #4c00ff;
color: #ffff;
}
li{
color: #4c00ff;
font-size: 20px;
}
div{
width: 300px;
height: 200px;
text-align: center;
}
</style>
<body>
<h1>Hi! Welcome To My Website.</h1>
<h1>I am a Professional Front-end Developer</h1>
<img src="download.jpg" alt="">
<p> <strong>About Me:</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Incidunt, magnam <br>
asperiores tempora quibusdam dolorem nostrum quod pariatur voluptatibus quos vel minima<br> nesciunt laboriosam
sequi neque
expedita consequuntur ipsum non? Dolore animi id pariatur<br> aperiam quia consequatur, voluptas eaque
provident,unde
maiores sit a! Quae odio ducimus</p>
<table border="5" width="950">
<tr>
<th>Qualification</th>
<th>Board</th>
<th>Percentage / Grades</th>
<th>Year</th>
</tr>
<tr>
<td>S.S.C</td>
<td>G.S.E.B India</td>
<td>75.57%</td>
<td>2004</td>
</tr>
<tr>
<td>H.S.C (Science Stream)</td>
<td>G.S.E.B India</td>
<td>72.40%</td>
<td>2006</td>
</tr>
<tr>
<td>GDCA (Grad. Dipl in Computer Applications)</td>
<td>NIE (National Institute Of Engineering), Mumbai, India</td>
<td>A Grade</td>
<td>2008</td>
</tr>
<tr>
<td>B.Sc. (Hons) - Applied Accounting</td>
<td>Oxford Brookes University</td>
<td>2:1 Upper Second Class Honours</td>
<td>2012</td>
</tr>
<tr>
<td>Chartered Accounting - ACCA</td>
<td>ACCA Glasgow, UK</td>
<td>Passed (1st Attempt)</td>
<td>2013</td>
</tr>
</table>
<h1> My Worker List </h1>
<table border="5px" width="950">
<tr>
<th>Serial NO.</th>
<th>First Name</th>
<th>Last Name</th>
<th>Identity</th>
<th>Website</th>
<th>weekly Income</th>
<th>Monthly Income</th>
</tr>
<tr>
<td>1.</td>
<td>Bill</td>
<td>Gates</td>
<td>Founder Microsoft</td>
<td>https://www.microsoft.com/</td>
<td>2500000$</td>
<td>10000000$</td>
</tr>
<tr>
<td>2.</td>
<td>Larry</td>
<td>Page</td>
<td>Founder Google</td>
<td>https://www.google.com/</td>
<td>2500000$</td>
<td>10000000$</td>
</tr>
<tr>
<td>3.</td>
<td>Steve</td>
<td>Jobs</td>
<td>Founder Apple</td>
<td>https://www.apple.com/</td>
<td>2500000$</td>
<td>10000000$</td>
</tr>
<tr>
<td>4.</td>
<td>Zark</td>
<td>Juku Mama</td>
<td>Founder Facebook</td>
<td>https://www.facebook.com/</td>
<td>2500000$</td>
<td>10000000$</td>
</tr>
</table>
<h1><i> Vacancy in my Company </i></h1>
<ul>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.Lorem ipsum dolor sit amet.</li>
</ul>
<div style="background-color: #ff0000;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #ffa500;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #ffff00;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #06a706;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #0000ff;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #840adb;">
<h2>Code Care BD</h2>
</div>
<div style="background-color: #ee5aee;">
<h2>Code Care BD</h2>
</div>
</body>
</html>