-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (96 loc) · 3.58 KB
/
index.html
File metadata and controls
103 lines (96 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>developersuryaa</title>
<link rel="stylesheet" href="style.css">
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.7.0/fonts/remixicon.css"
rel="stylesheet"
<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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<div class="logo">
<h1>developersuryaa</h1>
</div>
<div class="links">
<a href="#about">about</a>
<a href="#projects">projects</a>
</div>
<div class="repo-button">
<a href="https://github.com/developersuryaa">watch my repo</a>
</div>
</div>
<div class="hero-section">
<div class="intro-text">
<h2>WHO IS</h2>
</div>
<div class="hero-image">
<img src="IMAGE.jpg" alt="Suryaa's Image">
</div>
</div>
<div class="about-section" id="about">
<h2>Hi!</h2>
<h3>Im Surya Prakash, a <span>web developer</span> </h3>
<h3>focused on creating stunning</h3>
<h3>websites and projects from <span>Nepal</span></h3>
<br>
<br>
<h4>Building my <span>experience</span> to next level.</h4>
</div>
<div class="project-section" id="projects">
<div class="heading">
<h3>Crafted with <span>love.</span></h3>
<h5>These are few of my recent works</h5>
</div>
<div class="project-img">
<img src="work.png" alt="PROJECT">
</div>
<div class="right-see">
<i class="ri-corner-down-right-fill"></i> <a href="https://github.com/developersuryaa">see all my works</a>
</div>
</div>
<div class="skills-section" id="skills">
<div class="heading-skills">
<h2>Things I'm <span>good</span> at</h2>
<h4>skills, interest, passion and hobbies</h4>
</div>
<div class="development">
<h4>Development</h4>
<div class="cards">
<div class="skill-card"><img src="html.png" alt="HTML"></div>
<div class="skill-card"><img src="css.png" alt="CSS"></div>
<div class="skill-card"><img src="js.png" alt="JavaScript"></div>
<div class="skill-card"><img src="github.png" alt="Github"></div>
</div>
</div>
<div class="designing">
<h4>Designing</h4>
<div class="cards">
<div class="skill-card"><img src="figma.png" alt="Figma"></div>
<div class="skill-card"><img src="canva.png" alt="Canva"></div>
<div class="skill-card"><img src="photoshop.png" alt="Photoshop"></div>
</div>
</div>
</div>
<div class="footbar">
<h2>you can get in touch<h2>
<h2>with me via <a href="mailto:developersuryaa@gmail.com" class="email">email</a> or</h2>
<h2><a href="https://www.instagram.com/developersuryaa/" class="insta">Instagram</a> or <a href="https://x.com/suryaaishere" class="twitter">x</a>.</h2>
<h4>created with ❤️ by me </h4>
</div>
<script src="https://unpkg.com/@studio-freight/lenis"></script>
<script>
const lenis = new Lenis()
function raf(time) {
lenis.raf(time)
requestAnimationFrame(raf)
}
requestAnimationFrame(raf)
</script>
</body>
</html>