-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAlltask.html
181 lines (170 loc) · 4.51 KB
/
Alltask.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ALL CFE PROJECTS</title>
<!-- css styles -->
<style>
body {
font-family: sans-serif;
font-size: 18px;
}
table {
border-collapse: collapse;
border: 2px solid rgb(200, 200, 200);
letter-spacing: 1px;
font-size: 0.8rem;
margin: 70px auto;
text-align: center;
}
td,
th {
border: 1px solid rgb(190, 190, 190);
padding: 20px 40px;
}
th {
background-color: rgb(235, 235, 235);
}
td {
text-align: center;
font-size: 1.2rem;
}
tr:nth-child(even) td {
background-color: rgb(250, 250, 250);
}
tr:nth-child(odd) td {
background-color: rgb(245, 245, 245);
}
caption {
font-size: 2rem;
padding: 10px;
caption-side: top;
text-align: center;
color: green;
}
</style>
</head>
<body>
<table>
<caption>
<strong
>TABLE ALL PROJECTS WORKED ON SO FAR AT CFE AFDB PROGRAMM</strong
>
</caption>
<thead>
<tr>
<th>PROJECT TITLE</th>
<th>PROJECT DESCRIPTION</th>
<th>LIVE LINK</th>
<th>GITHUB REPO</th>
</tr>
</thead>
<tbody>
<tr>
<td>Html practice/Bio data</td>
<td>To understand different tags use in macking up text.</td>
<td>
<a
href="https://balqees0325.github.io/CfE_projects/week1/Html/Home.html"
>live link</a
>
</td>
<td>
<a href="https://github.com/balqees0325/CfE_projects"
>github repo link</a
>
</td>
</tr>
<tr>
<td>Blog website</td>
<td>
Working with html/css to build a website, checking for layout
skills.
</td>
<td>
<a href="https://balqees0325.github.io/CfE_projects/week2/home.html"
>live link</a
>
</td>
<td>
<a href=" https://github.com/balqees0325/CfE_projects"
>Github repo link</a
>
</td>
</tr>
<tr>
<td>Cloning Greenbrain website</td>
<td>
Working with html/css to build a website, and effective use of css
framework(bootstrap).
</td>
<td>
<a
href="https://balqees0325.github.io/CfE_projects/week3/landing.html"
>live link</a
>
</td>
<td>
<a href=" https://github.com/balqees0325/CfE_projects"
>Github repo link</a
>
</td>
</tr>
<tr>
<td>Building A BOT</td>
<td>
Working with html/css and javascript to build an AI app that checks
for people who are eligible to enter a shopping mall.
</td>
<td>
<a
href="https://balqees0325.github.io/CfE_projects/week3/week4/bot.html"
></a
>Live link
</td>
<td>
<a href=" https://github.com/balqees0325/CfE_projects"
>Github repo link</a
>
</td>
</tr>
<tr>
<td>WORKING WITH ARRAYS/ARRAY METTHODS</td>
<td>
We constructed a shopping lift using arrays,array methods and object
in javascript.
</td>
<td>
<a href="https://repl.it/@balqees0325/cfearray#index.js"
>live link</a
>
</td>
<td>
<a href=" https://github.com/balqees0325/CfE_projects"
>Github repo link</a
>
</td>
</tr>
<tr>
<td>School Management App</td>
<td>
Working with html/css and javascript to build an app that register
student and is able to modify the student datas.
</td>
<td>
<a
href="https://balqees0325.github.io/CfE_projects/schoolTask/index.html"
>live link</a
>
</td>
<td>
<a href=" https://github.com/balqees0325/CfE_projects"
>Github repo link</a
>
</td>
</tr>
</tbody>
</table>
</body>
</html>