-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (69 loc) · 2.97 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
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<head>
<title>Moony's Site</title>
<link rel="Stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</body>
<div class="navbar">
<nav>
<h2 class="logo">Moony</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
<a href="#" class="btn">Discord</a>
</nav>
<div class ="content">
<h4>Hello, My name is</h4>
<h1>Kaushal</h1>
<h3>I'm a Rookie Web Developer</h3>
</div>
</div>
<section class="about">
<div class="main">
<img src="img/aboutme.jpg">
<div class="about-text">
<h2>About Me</h2>
<h5>My story</h5>
<p>I have been exposed to coding for as young as 5th grade, My first language which I explored was Python, Despite forgetting everything about Python and the languages I learned a few years back, I am ready to relearn everything again, You can view my upcoming projects/future projects in the Projects page on my Portfolio :)</p>
<button type="button">Let's connect</button>
</div>
</div>
</section>
<div class="hobbies">
<div class="title">
<h2>My Achievements</h2>
</div>
<div class="box">
<div class="card">
<i class="fa-solid fa-robot"></i>
<h5>Part of a FTC Team</h5>
<div class="pra">
<p>I was part of the programming team for FTC Team Since Sliced Bread for 1 year, Our team qualified to states but sadly lost and could not go to worlds</p>
</div>
</div>
<div class="card">
<i class="fa-solid fa-robot"></i>
<h5>FRC Team Member (current)</h5>
<div class="pra">
<p>I am currently a member of the CSP Team in FRC, CSP is the Software Team! We work with the WPILib to make our robot do cool automations</p>
</div>
</div>
</div>
</div>
<footer>
<p>Website still under construction</p>
<p>This website still needs functionality</p>
<div class="social">
<a href="#"><i class="fa-brands fa-youtube"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</div>
<p class="end">Moony™️</p>
</footer>
</body>
</html>