-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutMe3.html
63 lines (63 loc) · 2.03 KB
/
aboutMe3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<title>About me</title>
</head>
<body>
<div class="aboutMeBG">
<img
src="images/Mee.png"
alt="author's image"
width="250"
height="250"
/>
<div class="headingAboutMe">About me</div>
<div class="descriptionContainer">
<div class="description">
Innovative game programmer with over 2 years of experience in gaming
field. <br />
Expertise in all areas of game programming, including development,
coding, and troubleshooting. <br />
created more than 20 games of which 5 are on play store.
<br />
<br />
Games are available on
<a
href="https://play.google.com/store/apps/dev?id=4705624996643781431"
>Play store</a
>
for everyone(Android version less than 12).
</div>
</div>
<div class="wrapper">
<ul>
<li class="facebook">
<i class="fa fa-facebook fa-1x" aria-hidden="true"></i>
</li>
<li class="twitter">
<i class="fa fa-twitter fa-1x" aria-hidden="true"></i>
</li>
<li class="instagram">
<i class="fa fa-instagram fa-1x" aria-hidden="true"></i>
</li>
<li class="google">
<i class="fa fa-google fa-1x" aria-hidden="true"></i>
</li>
<li class="whatsapp">
<i class="fa fa-whatsapp fa-1x" aria-hidden="true"></i>
</li>
</ul>
</div>
</div>
</body>
</html>