-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (125 loc) · 5.42 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
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
<!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">
<title>My Portfolio</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/Style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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=Lato:wght@300;400;700&family=Poppins&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<nav class="flex items-centre justify-between">
<div class ="left flex items-centre justify-between">
<div class="branding">
<img src="./Images/logo-removebg-preview.png" alt="">
</div>
<div>
<a href="#">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#freelancer">Freelancer</a>
</div>
</div>
<div class ="right" >
<button class="btn btn-primary"><a href="#contact-1">Conatct</a>
</button>
</div>
</nav>
<div class="Hero flex items-centre justify-between" >
<div class="Left flex-1 flex justify-center">
<img src="./Images/man.png" alt="" style="height: 500px;">
</div class="align">
<div class="Right flex-1" style="color: white;">
<h6>Ribhav Dev Singh</h6>
<h1>I'm a Full Stack <br><span>Developer</span></h1>
<p>Multidisciplinary Web Developer who hacks at, makes and occasionally break things</p>
<p>Software Developer Intern at Cyber Group.</p>
<p>Less moody in real life</p>
<div>
<a class="btn btn-secondary" href="./CV/RIBHAV DEVSINGH_InternshalaResume.pdf" target="_blank">Download CV</a>
</div>
</div>
</div>
</div>
</header>
<section id="about" class="about">
<div class="container2">
<div class="flex-1" style="padding: 40px;">
<img class ="about-me-image" src="./Images/man-2.png" alt="">
</div>
<div style="padding: 50px;">
<div class="flex-1">
<h1>About <span>Me</span></h1>
<h3>Hello! I am Ribhav Dev Singh</h3>
<p>I am a Computer Science Student currently in my last year.
I am pursuing B.Tech from MDU, Rohtak. I like to learn new technologies and working on them.
Currently I am a Software Developer Intern with Cyber Group India. I like to travel a lot and I am a foodie.
Looking forward for some great experiences in life.</p>
</div>
<div class="social">
<a href="#"></a>
<i class="fab fa-edge"></i>
<a href="https://www.facebook.com/ribhavdev.singh" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://in.linkedin.com/in/ribhav-dev-singh-20159b195" target="_blank"><i class="fab fa-linkedin-in"></i></a>
<a href="https://github.com/Ribhav-git" target="_blank"><i class="fab fa-github-square"></i></a>
</div>
</div>
</div>
</section>
<section id="skills" class="my-skills">
<h1>My Skills</h1>
<div class="skills-area">
<div class="skill">
<div class="skill-title">HTML</div>
<div class="skill-bar"></div>
<div class="html skill-fill">
<span class="skill-percent">50%</span>
</div>
</div>
<div class="skill">
<div class="skill-title">CSS</div>
<div class="skill-bar"></div>
<div class="css skill-fill">
<span class="skill-percent">80%</span>
</div>
</div>
<div class="skill">
<div class="skill-title">JavaScript</div>
<div class="skill-bar"></div>
<div class="js skill-fill">
<span class="skill-percent">70%</span>
</div>
</div>
</div>
</section>
<section id="freelancer" class="freelancer">
<h1>I Am Available For Freelancer</h1>
<p>I am here to provide solutions to your problems</p>
<a class="btn btn-primary" href="./CV/RIBHAV DEVSINGH_InternshalaResume.pdf" target="_blank">Download CV</a>
</section>
<section id="contact-1" class="contact">
<h1 style="font-size: 80px; color: #cc0659;">Contact</h1>
<p>If you have any query, please drop a message</p>
<form class="form">
<h6>Write your query below
</h6>
<input style="height: 60px; width: 100%;" type="text" size="30">
<i style="color:#cc0659;" class="fas fa-arrow-right"></i>
</form>
</section>
<footer style="height: 280px;">
<img class="footer-logo" src="./Images/logo-removebg-preview.png" style="height: 100px;" width="100px">
<div class="copyright">
Copyright 2021 Feel Free to copy .If you need any help ping me!
</div>
</footer>
</body>
</html>