-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (70 loc) · 2.44 KB
/
index.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
<!DOCTYPE html>
<html lang = 'en'>
<head>
<title>Akash Verma's Portfolio</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="html/experience.html">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h1>Akash Verma</h1>
<p>I am a computer science and biology major with experience in software development, bioinformatics, and teaching.</p>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li>
<h3>Oregon State University</h3>
<p>Bachelor of Science in Computer Science, GPA 4.0</p>
<p>Relevant Coursework: Discrete Math, Data Structures and Algorithims, Advanced Linear Algebra, Multivariable Calculus, Operating Systems</p>
</li>
<li>
<h3>University of California, Riverside</h3>
<p>Bachelor of Science in Biology, GPA 3.7</p>
</li>
</ul>
</section>
<section id="experience">
<h2>Experience</h2>
<!-- experience details go here -->
</section>
<section id="projects">
<h2>Projects</h2>
<!-- project details go here -->
</section>
<section id = "contact">
<h2>Contact</h2>
<ul>
<li>Email: akash925@gmail.com</li>
<li>LinkedIn: <a href="https://linkedin.com/in/akash-verma-39118a56">https://linkedin.com/in/akash-verma-39118a56</a></li>
<li>Phone: (530)-513-7677</li>
<li>GitHub: <a href="https://github.com/akashthemosh">https://github.com/akashthemosh</a></li>
</ul>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<input type="submit" value="Send">
</form>
</section>
</main>
<footer>
<p>Copyright © 2021 Akash Verma</p>
</footer>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>