-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmy page.html
More file actions
103 lines (85 loc) · 2.5 KB
/
my page.html
File metadata and controls
103 lines (85 loc) · 2.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Website</title>
</head>
<body style="background-color: #EAF6F6;"><!--INLINE CSS-->
<!--This is for adding comment-->
<table cellspacing="20">
<tr>
<td> <img src=" dhruvi.jpg"> </td>
<td>
<h1>
Dhruvi Bansal
</h1>
<p> This is my <em> first website. Founder of <strong> DSG </strong>. </em>
</p>
</td>
</tr>
</table>
<hr>
<h3>EDUCATION</h3>
<ul>
<li> 10th and 12th from St. lawrence convent school </li>
<li>Btech in EEE from BHARTI VIDHYAPEETH COLLEGE OF ENGINEERING (2nd year).</li>
</ul>
<hr>
<h3>Skills</h3>
<!--NESTED TABLE-->
<table>
<tr>
<td>
<table>
<tr>
<td>C++ programming</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>C programming</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>python</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>arduino </td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>HTML</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>painting</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>MS OFFICE</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
<h3> Projects </h3>
<ol>
<li>LED CUBE (4*4*4) </li>
<li>DD ROBOT</li>
<li>Line following robot</li>
</ol>
<hr>
<a href="hobbies.html">My hobbies</a> <br>
<a href="contact.html">Contact me </a>
<!--<ol type ="i"> if roman bullets you want ; <ol start ="7"> if u want to start from between-->
<div id="footer">
<p>Copyright © 2020</p>
</div>
</body>
</html>