-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJohn Smith .html
133 lines (111 loc) · 2.55 KB
/
John Smith .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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>About John</title>
<style>
body {
font-family: Arial, sans-serif;
}
h1, h3 {
font-family: "Times New Roman", serif;
}
p {
font-family: Verdana, Geneva, sans-serif;
}
table {
border-collapse: collapse;
width: 100%;
}
table, th, td {
border: 1px solid black;
}
th, td {
text-align: left;
}
marquee {
background-color: yellow;
padding: 10px;
}
</style>
</head>
<body>
<marquee behavior="scroll" direction="left">Welcome to my website!</marquee>
<table cellspacing="20" cellpadding="20">
<tr>
<td><img src="/images/johnpic.png" alt="John's profile picture"></td>
<td>
<h1>John Smith</h1>
<p> <strong>Technology Enthusiast</strong> <br>
<em>Web Development</em> | <em>Python</em> | <em>Data Science</em> <br>
<p>Aspiring <b> <i>Full Stack Web Developer </i></b></p>
</p>
<p>Hello there! I'm John. I have a passion for all things tech and love exploring new ideas and concepts.</p>
</td>
</tr>
</table>
<hr size="3" noshade>
<h3>Education</h3>
<ul>
<li>ABC High School</li>
<li>XYZ College</li>
</ul>
<hr>
<h3>Certifications</h3>
<table cellspacing="5" cellpadding="5">
<tr>
<td><strong>10th January, 2022</strong></td>
<td>Web Development Course by ABC Institute</td>
</tr>
<tr>
<td><strong>16th February, 2022</strong></td>
<td>Python Programming Certification by XYZ Academy</td>
</tr>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10" cellpadding="10">
<tr>
<td>Web Development</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Data Science</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Java</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>UI/UX Design</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>Problem Solving</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
<hr>
<h3>Hobbies</h3>
<ol>
<li>Reading</li>
<li>Learning new technologies</li>
<li>Writing code</li>
<li>Playing chess</li>
</ol>
<hr size="3" noshade>
<p>
<strong>Connect with me:</strong>
<a href="https://www.instagram.com/johnsmith">Instagram</a>
<a href="https://twitter.com/johnsmith">Twitter</a>
</p>
<p>
<strong><a href="contacts.html">Contact Me!</a></strong>
</p>
</body>
</html>