-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (78 loc) · 3.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Portfolio</title>
<script src="https://kit.fontawesome.com/aebb27a90d.js" crossorigin="anonymous"></script>
<link
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav id="navbar" class="navbar">
<ul class="navbar-list">
<li><a href="#welcome-section">About</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="welcome-section">
<h1>Hello, World! My name is Karan Bhura</h1>
<p>a coding lover</p>
</section>
<section id="work">
<h2>Some of my top work</h2>
<div id="projects" class="project">
<div class="project-tile">
<a href="https://github.com/kb0207/Survey-Form" target="_blank">
<img class="project-img" src="./assets/survey-form.png" loading="lazy" alt="">
<p class="project-title"> <span class="hidden"><</span> Survey Form <span class="hidden">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="https://github.com/kb0207/Technical-Documentation-Page" target="_blank">
<img class="project-img" src="./assets/js-documentation-page.png" loading="lazy" alt="">
<p class="project-title"> <span class="hidden"><</span> Technical Documentation Page <span class="hidden">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="https://github.com/kb0207/Tribute-Page" target="_blank">
<img class="project-img" src="./assets/tribute-page.png" loading="lazy" alt="">
<p class="project-title"> <span class="hidden"><</span> Tribute Page <span class="hidden">/></span></p>
</a>
</div>
<div class="project-tile">
<a href="https://github.com/kb0207/Product-Landing-Page" target="_blank">
<img class="project-img" src="./assets/product-landing-page.png" loading="lazy" alt="">
<p class="project-title"> <span class="hidden"><</span> Product Landing Page <span class="hidden">/></span></p>
</a>
</div>
</div>
<a href="https://github.com/kb0207?tab=repositories" class="show-more-btn" target="_blank">Show All <i class="fa-solid fa-arrow-right"></i></a>
</section>
<section id="contact">
<div class="contact-header">
<h1>Let's work together...</h1>
<p>How do you take your coffee?</p>
</div>
<div class="contact-links">
<a target="_blank" id="profile-link" class="links" href="https://github.com/kb0207"> <i class="fa-brands fa-github"></i> Github</a>
<a target="_blank" class="links" href="mailto:[email protected]"> <i class="fa-regular fa-envelope"></i> Send a mail</a>
</div>
</section>
<footer>
<hr />
<div class="contact-footer">
<p>This website is a personalised copy of freeCodeCamp's 5th and final Certification Project: <a target="_blank" href="https://personal-portfolio.freecodecamp.rocks/">Personal-Portfolio Webpage</a>
</p>
</div>
</footer>
</body>
</html>