-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
45 lines (40 loc) · 1.62 KB
/
contact.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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Contact Me</title>
<link href="http://fonts.googleapis.com/css?family=Oxygen:400,700,300" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
<div id="menu-wrapper">
<div id="menu" class="container">
<ul>
<!-- NAVIGATION MENU. THERE SHOULD BE ONE LIST ITEM FOR EACH BUTTON IN YOUR NAVIGATION BAR. -->
<!-- REPLACE THE # IN THE LINK WITH THE FILE NAME OF THE APPROPRIATE PAGE. -->
<li><a href="index.html">About</a></li>
<li><a href="image.html">Image Editing</a></li>
<li><a href="web.html">Web Design</a></li>
<li><a href="video.html">Video Production</a></li>
<li><a href="animation.html">Animation</a></li>
<li><a href="screencast.html">Screencast</a></li>
<li class="current_page_item"><a href="contact.html">Contact Me</a></li>
</ul>
</div>
</div>
<div id="page" class="container">
<div class="centered-content">
<h2>Contact Me</h2>
<p>You can contact me via Email or connect with him on LinkedIn.</p>
<div class="contact-buttons">
<a href="mailto:[email protected]" class="button">Email Rithik</a>
<a href="https://www.linkedin.com/in/rithikyennam" class="button" target="_blank">Connect on LinkedIn</a>
</div>
</div>
</div>
</div>
</body>
</html>