-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (98 loc) · 2.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- meta give extra data and tella that encoding is utf 8 is -->
<title>🤚asad personl site</title>
<meta name="description" content="asad has website" </head>
<body>
<table cellspacing="20 ">
<tr>
<td>
<img src="https://image.shutterstock.com/image-vector/keep-simple-business-concept-lightbulbs-260nw-489515029.jpg"
alt="
Error" height="150px" width="150px">
</td>
<td>
<h1>Asad is Web develper</h1>
<i>
<p>undergraduate student </p>
</i>
<em>
<p>undergraduate <strong> student</strong> </p>
</em>
<!-- it is good practise to use em -->
<!-- in place of bold use strong -->
<p> i am an ios and web developer , i love coffee</p>
</td>
</tr>
</table>
<hr noshade>
<h3> Books and teaching</h3>
<ul>
<li> atomic habit</li>
<li>rich and poor dad</li>
<li>secret</li>
</ul>
<!-- <hr noshade> -->
<!-- <h3>Expirence</h3>
<p>2010-2013 android</p>
<p>2010 researcher at google</p> -->
<!-- not proper indent -->
<hr noshade>
<h3>Skills</h3>
<table cellspacing="20">
<tr>
<td>
Ios developer
</td>
<td>
✭✭✭✭✭
</td>
<td>
Photography
</td>
<td>
✭✭✭
</td>
</tr>
<tr>
<td>
Web developer
</td>
<td>
✭✭✭✭
</td>
<td>
Painting
</td>
<td>
✭✭
</td>
</tr>
</table>
<hr noshade>
<table>
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
</tfoot>
<!-- this is good practise to use different setion -->
<tr>
<td>2010-2013</td>
<td>Android</td>
</tr>
<tr>
<td>2010</td>
<td>Researcher at google</td>
</tr>
</table>
<a href="hobbies.html">MY Hobbies</a><br>
<a href="contact.html">Contact Me</a>
</html>