-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodePage.html
More file actions
135 lines (97 loc) · 4.88 KB
/
Copy pathcodePage.html
File metadata and controls
135 lines (97 loc) · 4.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Akshay's Website 2.0</title>
<link rel="stylesheet" href="./styleDark.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo&family=Silkscreen&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/77fe2f09ee.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<a id="title"href="#home">Akshay Nataraja</a>
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#activities">activities</a></li>
<li><a href="#contact">contact</a></li>
<li><a href="js_page.html" target="_blank" rel="noopener noreferrer"> js_page</a></li>
</ul>
</nav>
</header>
<!-- <h1>og</h1>
<h2>oga</h2>
<h3>ogat</h3> -->
<section class="home" id="home">
<div class="headImage">
<img src="img/dudeshay.JPG">
<div>
<h1>Akshay Nataraja</h1>
<h2>Undergraduate Student @ PSU | Philadelphia Eagles Fan</h2>
<!-- <h3>This website is currently a work in progress.</h3>
<h4>As I learn new things, I hope to add and improve upon it like a sandbox.</h4> -->
</div>
</div>
</section>
<section class="about" id="about">
<div>
<h1>About me</h1>
<p>Once again, my name is Akshay and I study Computer Science at Penn State University</p>
<p>I am currently a third-year student with experience with in Python, Java, and HTML</p>
</div>
<div>
<img src="img/IMG_9657.JPG" >
<img src="img/EaglePaint.jpg">
</div>
</section>
<section class ="activities"id="activities">
<h1>activities </h1>
<div class="activitiesContain">
<div>
<a href="codePage.html" target="_blank" rel="noopener noreferrer"><img src="img/IMG_9657.JPG"></a>
<a href="codePage.html" target="_blank" rel="noopener noreferrer"> <h1> Code</h1> </a>
<p> I do a lot of coding</p>
</div>
<div>
<a href="createPage.html" target="_blank" rel="noopener noreferrer"><img src="img/EaglePaint.jpg" ></a>
<a href="createPage.html" target="_blank" rel="noopener noreferrer"> <h1> Art</h1> </a>
<p> I do a lot of creating</p>
</div>
<div>
<a href="servePage.html" target="_blank" rel="noopener noreferrer"><img src="img/IMG_9657.JPG"></a>
<a href="servePage.html" target="_blank" rel="noopener noreferrer"> <h1> Other</h1> </a>
<p> But most importantly, I do a lot of other things</p>
</div>
</div>
</section>
<section id="contact" class="contact">
<div>
<img src="img/EaglePaint.jpg">
</div>
<div>
<h1> contact</h1>
<form action="mailto:apn5434@psu.edu" method="post" enctype="text/plain">
<label> Name: </label>
<input type="text" name="Your name" placeholder="Enter your name"><br>
<label> Email: </label>
<input type="text" email="Your email" placeholder="Enter your email"><br>
<label> Message: </label><br>
<textarea name="Your Message" cols="50" rows="10" placeholder="Enter Your message"></textarea><br>
<input type="submit">
</form>
</div>
</section>
<footer>
<a href="https://www.instagram.com/akshay_nataraja/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/akshay-nataraja-b20972220/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/Codakshay"><i class="fa-brands fa-square-github"></i></a>
<a href=""><i class="fa-regular fa-address-card"></i></a>
<p>610-412-8366 | apn5434@psu.edu</p>
</footer>
<div></div>
</body>
<script></script>
</html>