-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
70 lines (63 loc) · 2.46 KB
/
about.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
<!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">
<title>About Me</title>
<link rel="stylesheet" href="about-me.css">
</head>
<body>
<div class="wrapper">
<div class="nav">
<a href="./index.html">
<div class="nav-home-div">
<p class="nav-home">Home</p>
</div>
</a>
<div class="nav-about-div">
<p class="nav-about">About me</p>
</div>
<a href="./git.html">
<div class="nav-git-div">
<p class="nav-git">Get In Touch</p>
</div>
</a>
</div>
<div class="top-contaner">
<img src="./images/about-1.svg" alt="" class="img-1">
<p class="text">Hello There,<br><br> My Name is Sudip Kumar I am 18 years old , I am a college student
pursuing BCA
from University of Lucknow and I love designing website and mobile apps and currently I am improving my
skills by practicing and making different type of designs like logos, website, apps and banner</p>
</div>
<div class="bottom-contaner">
<div class="skill-div">
<h2 class="skill-text">Skills</h2>
</div>
<div class="skill-div-2">
<div class="skill-content">
<div class="html">
<h3 class="html-text">HTML</h3>
<img src="./images/html.svg" alt="" class="html-img">
</div>
<div class="css">
<h3 class="css-text">CSS</h3>
<img src="./images/css.svg" alt="" class="css-img">
</div>
<div class="python">
<h3 class="python-text">Python</h3>
<img src="./images/python.svg" alt="" class="python-img">
</div>
<div class="figma">
<h3 class="figma-text">Figma</h3>
<img src="./images/figma.svg" alt="" class="figma-img">
</div>
</div>
<img src="./images/about-2-img.svg" alt="" class="skill-img">
</div>
</div>
</div>
</html>
</body>
</html>