File tree 1 file changed +62
-0
lines changed
1 file changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
+ < title > HTML CSS JS Projects</ title >
8
+ < style >
9
+ * {
10
+ margin : 0 ;
11
+ padding : 0 ;
12
+ }
13
+ body {
14
+ font-family : Arial, Helvetica, sans-serif;
15
+ background-color : # eee ;
16
+ }
17
+ h1 {
18
+ text-align : center;
19
+ margin-top : 20px ;
20
+ }
21
+ table {
22
+ margin : 20px auto;
23
+ background-color : white;
24
+ width : 90% ;
25
+ border : 1px solid black;
26
+ border-collapse : collapse;
27
+ }
28
+ table th , td {
29
+ border : 1px solid black;
30
+ padding : 5px 20px ;
31
+ }
32
+ .center {
33
+ text-align : center;
34
+ }
35
+ </ style >
36
+ </ head >
37
+ < body >
38
+ < h1 > HTML CSS JavaScript Projects</ h1 >
39
+ < table >
40
+ < tr >
41
+ < th class ="center "> No.</ th >
42
+ < th > Project Name</ th >
43
+ < th > Live link</ th >
44
+ </ tr >
45
+ < tr >
46
+ < td class ="center "> 1</ td >
47
+ < td > Age Calculator</ td >
48
+ < td class ="center "> < a href ="# " target ="_blank "> Click here</ a > </ td >
49
+ </ tr >
50
+ < tr >
51
+ < td class ="center "> 2</ td >
52
+ < td > </ td >
53
+ < td class ="center "> </ td >
54
+ </ tr >
55
+ < tr >
56
+ < td class ="center "> 3</ td >
57
+ < td > </ td >
58
+ < td class ="center "> </ td >
59
+ </ tr >
60
+ </ table >
61
+ </ body >
62
+ </ html >
You can’t perform that action at this time.
0 commit comments