-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
53 lines (50 loc) · 2.69 KB
/
about.html
File metadata and controls
53 lines (50 loc) · 2.69 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
<!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="css/style.css">
<link rel="stylesheet" href="css/about.css">
<script src="javascript/script.js" defer></script>
<title>Rishi | graphic designer & web developer</title>
</head>
<body>
<!-- navigation bar -->
<header id="nav-bar" class="flex">
<i class="nav-menu"><img src="/assets/nav-menu.png" alt="open navigation menu"></i>
<nav class="nav-links">
<ul class="flex animate-child-x">
<li><a href="/">home</a></li>
<li><a href="/#work-section">portfolio</a></li>
<li><a href="/about">about</a></li>
</ul>
</nav>
</header>
<div class="nav-menu-overlay slide-x"></div>
<!-- main content -->
<main>
<div class="content flex">
<h1>About me</h1>
<p>Hi, I am Rishi, a web developer and graphic designer. I help brands / business stand out visually with beautiful, creative and effective designs and also develop websites to create their online presence. My purpose is to assist anyone who wants to create something amazing.<br>I would love to work with you. Just drop me a message so we can talk. Thanks!</p>
<div class="flex contact-info">
<p class="email"><b>Email:</b> <a href="mailto:rishikumarchaudhari9@gmail.com">rishikumarchaudhari9@gmail.com</a> </p>
<div class="social-links flex">
<a href="https://www.instagram.com/rishi.kmr7/"><i><img src="/assets/instagram.png" alt="instagram"></i></a>
<a href="https://www.linkedin.com/in/rishikumar-chaudhari-a80bb6256/"><i><img src="/assets/linkedin.png" alt="linkedin"></i></a>
<a href="https://www.youtube.com/channel/UC7YWDhd3GQ6iTvVLMHI6sFQ"><i><img src="/assets/youtube.png" alt="youtube"></i></a>
</div>
</div>
</div>
<!-- <div class="contact-form">
<form action="/contact" method="post">
<input type="text" name="name" placeholder="name" required>
<input type="email" name="email" placeholder="email" required>
<textarea name="message" cols="30" rows="7" placeholder="type your message here" required></textarea>
<div class="err-status hide">couldn't send the message. please try again</div>
<button type="submit" class="btn">contact me</button>
</form>
</div> -->
</main>
</body>
</html>