-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpractical-11.html
199 lines (199 loc) · 6.91 KB
/
practical-11.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical-11</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
table, tr, td, th {
border-collapse: collapse;
border-bottom: 1px solid gainsboro;
}
.head {
border-top: 3px solid black;
border-right: 3px solid black;
font-size: 140%;
background-color: #ffa931;
color: white;
}
tr:nth-child(2) {
border-bottom: 2px solid black;
background-color: #EFF48E;
}
tr:nth-child(12) {
border-bottom: 3px solid black;
}
td {
text-align: center;
}
.names {
text-align: left;
}
td:nth-child(1) {
border-left: 3px solid black;
}
td:nth-child(5) {
border-right: 3px solid black;
}
td:nth-child(4) {
color: #519872;
}
tr:nth-child(12) td:nth-child(4) {
color: tomato;
}
a {
text-decoration: none;
}
a:hover {
color: #c26565;
}
i {
margin: 3px;
}
.fa-pencil:hover {
color: blue
}
.fa-trash-o:hover {
color: red;
}
</style>
</head>
<body>
<table cellpadding="15px" align="center">
<tr>
<td class="head" colspan="5">Fullstack Live Practical Book</td>
</tr>
<tr>
<th style="border-left: 3px solid;">#</th>
<th>Practical Name</th>
<th style="width: 100px;">Link</th>
<th style="width: 100px;">Status</th>
<th style="border-right: 3px solid; width: 100px;">Tools</th>
</tr>
<tr>
<td>1.</td>
<td class="names">Created a basic HTML skeleton using offline HTML Editor and Online Sandbox Environment</td>
<td>
<a href="practical-1.html">Practical-1</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>2.</td>
<td class="names">Live the first webpage on Git-Hub</td>
<td>
<a href="practical-2.html">Practical-2</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>3.</td>
<td class="names">Created a webpage showing a basic HTML structure using Character Entities and Span tag</td>
<td>
<a href="practical-3.html">Practical-3</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>4.</td>
<td class="names">Created a webpage having list of all practicals and there individual practical page links</td>
<td>
<a href="practical-4.html">Practical-4</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>5.</td>
<td class="names">Created an image map having fornt-end introduction</td>
<td>
<a href="practical-5.html">Practical-5</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>6.</td>
<td class="names">Created a webpage layout using CSS layout property</td>
<td>
<a href="practical-6.html">Practical-6</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>7.</td>
<td class="names">Created a webpage layout using div tags</td>
<td>
<a href="practical-7.html">Practical-7</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>8.</td>
<td class="names">Created a webpage layout with content and fix navigation bar(practical-7 layout)</td>
<td>
<a href="practical-8.html">Practical-8</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>9.</td>
<td class="names">Created a responsive webpage layout with content(practical-8 layout)</td>
<td>
<a href="practical-9.html">Practical-9</a>
</td>
<td>Checked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
<tr>
<td>10.</td>
<td class="names">Created a responsive sidebar navigation</td>
<td>
<a href="practical-10.html">Practical-10</a>
</td>
<td>Unchecked</td>
<td>
<i class="fa fa-pencil" aria-hidden="true" style="font-size: 120%;"></i>
<i class="fa fa-trash-o" aria-hidden="true" style="font-size: 120%;"></i>
</td>
</tr>
</table>
</body>
</html>