-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (96 loc) · 4.39 KB
/
index.html
File metadata and controls
106 lines (96 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.2.0/fonts/remixicon.css" rel="stylesheet">
<title>Harshavardhan Rao Ariga</title>
<meta name="theme-color" content="#e2496d">
</head>
<body>
<header class="header">
<nav class="nav">
<!-- This is the branding of the navbar -->
<div class="nav__branding">
<i class="ri-twitch-fill nav__branding-logo"></i>
<h1 class="nav__branding-title"><a href="#" class="nav__link nav__link-brand">
Harshavardhan Rao Ariga
</a></h1>
</div>
<!-- This is the menu that'll be shown once the navbar is toggled -->
<div class="nav__menu" id="nav__menu">
<ul class="nav__list">
<li class="nav__list-item">
<a href="#" class="nav__link">Home</a>
</li>
<li class="nav__list-item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__list-item">
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
<i class="ri-close-circle-line nav__close" id="nav__close"></i>
</div>
<!-- This is the hamburger menu button -->
<div class="nav__toggle" id="nav__toggle">
<i class="ri-menu-3-fill"></i>
</div>
</nav>
</header>
<main class="hero">
<div class="hero__col1">
<h1 class="h1">A <span class="text--primary">small </span> donation can make a <span
class="text--primary">big</span> difference!</h1>
<p class="subhead">The spark foundation task #3</p>
<p class="description">This website was created as a task mentioned in the TSF Grip documentation by Harshavardhan Rao Ariga.</p>
<form><script src="https://checkout.razorpay.com/v1/payment-button.js" data-payment_button_id="pl_HasxPqQ3pDbiyT" async> </script> </form>
</div>
<div class="hero__col2">
<figure class="figure">
<img src="C:\Users\Harshavardhan\Desktop\Danny\Internship\task1 web\Payment-gateway-main\images\1_4XRAX4obUOvMVqWibVCneQ1.jpeg" alt="Donation Artwork" class="bio-img">
</figure>
</div>
</main>
<section id="about" class="about section">
<h1 class="h1">About the project</h1>
<p class="subhead">Here are the things I learnt while creating this project</p>
<ul class="list">
<li class="list__item"> - Frontend development</li>
<li class="list__item"> - Integrating the Payment Gateway</li>
<li class="list__item"> - Hosting the site on Github Pages</li>
</ul>
</section>
<section id="contact" class="contact section">
<div class="contact__container">
<div class="contact__col1">
<h1 class="h1">Hello, I'm Harshavardhan Rao Ariga</h1>
<p class="subhead">I make awesome stuff for the web</p>
<p class="description--opaque">
Reach me on social media <br/>
<ul class="list">
<li class="list__item">
<i class="ri-mail-line list__icon"></i>
harsh.glory129@gmail.com
</li>
<li class="list__item">
<i class="ri-instagram-line list__icon"></i>
@arigaharsh
</li>
<li class="list__item">
<i class="ri-linkedin-box-fill list__icon"></i>
@harshavardhan
</li>
</ul>
</p>
</div>
<div class="contact__col2">
<img src="C:\Users\Harshavardhan\Desktop\Danny\Bannu Marriage\Selected\SGR_9024.jpg" class="bio-img bio-img--art" alt="">
</div>
</div>
</section>
<script src="app.js"></script>
</body>
</html>