-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (71 loc) · 3 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
71
72
73
74
75
<!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</title>
<link rel = "stylesheet" href = "/about.css">
</head>
<body>
<!--Navigation-->
<nav>
<div class="menu">
<button class = "logo"><span style="color: white; font-size: large;">ZS</span></button>
<ul>
<li><a href = "index.html" >Home</a></li>
<li><a href = "#about" style="color: #7A35EA; text-decoration: underline; text-underline-offset: 2px;" class="about">About</a></li>
<li><a href = "portfolio.html" class="portfolio">Portfolio</a></li>
<li><a href = "blog.html" class="blog">Blogs</a></li>
</ul>
</div>
<div class="social">
<div class = "media github">
<a href = "https://github.com/zealshah29">
<img src = "/images/Social media logo github.svg" class = "images" alt = "github">
</a>
</div>
<div class = "media linkedIn">
<a href = "https://www.linkedin.com/in/zeal-shah-60214b121/">
<img src = "/images/Social media logo linkdin.svg" class = "images" alt = "linkedIn">
</a>
</div>
<div class = "media Behance">
<a href = "https://www.behance.net/zealshah5">
<img src = "/images/Social media logo Behance.svg" class = "images" alt = "Behance">
</a>
</div>
<div class = "media YouTube">
<a href = "https://www.youtube.com/channel/UCh44B2ZjMoUtRWTfi7G9yTA">
<img src = "/images/Youtube.svg" class = "images" alt = "YouTube">
</a>
</div>
</div>
<a href="contact.html">
<button class = "contact">
Contact Me
</button>
</a>
</nav>
<!--About-->
<section class="about section" id = "about">
<h2 class = "section_title">About Me</h2>
<div class="about_container container grid">
<img src = "/images/about me.png" alt = "About Me Image" class = "about_img">
<div class = "about_data">
<p class = "about_description">
Hello, nice to meet you. I love technology and innovations through which we can improve the lifestyle of people.
I enjoy coding and designing, and I'm working towards becoming a better version of myself everyday.
To give you all a gist about my personality, I'm an amiable person who loves dancing, writing, reading, socializing and learning something new everyday.
Hope you have a good time on my website. If you are looking forward to hire me, here's my resume.
</p>
</div>
</div>
<div class="about_buttons">
<a href = "/resume/zeal.pdf" class="button button--flex">
My Resume<i class = "uil uil-download-alt button_icon"></i>
</a>
</div>
</section>
</body>
</html>