-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (107 loc) · 5.16 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
<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="CSS/style.css">
<link rel="stylesheet" href='https://unpkg.com/[email protected]/css/boxicons.min.css'>
<title>My Portfolio</title>
</head>
<body>
<header class="header">
<a href="#" class="logo">Portfolio</a>
<nav class="navbar">
<a href="#Home" style="--i:1;" class="active">Home </a>
<a href="#about"style="--i:2;">About</a>
<a href="#skills" style="--i:3;">Skills</a>
<a href="#" style="--i:4;">Resume</a>
<a href="#" style="--i:5;">Contact</a>
</nav>
</header>
<section class="Home">
<div class="Home-sci">
<a href="https://www.instagram.com/loving_python/" target="_blank" ><i class='bx bxl-instagram'></i></a>
<a href="https://www.linkedin.com/in/bama-charan-chhandogi-b63420240/" target="_blank"><i class='bx bxl-linkedin'></i></a>
<a href="https://twitter.com/BamacharanCh" target="_blank"><i class='bx bxl-twitter'></i></a>
</div>
<div class="Home-content">
<h1> I'm Bama Charan Chhandogi</h1>
<h3>Frontend Developer</h3>
<a href="" class="btn">Hire Me</a>
</div>
<div class="Home-img">
<div class="glowing-circle">
<span></span>
<span></span>
<div class="image">
<img src="me.png" alt="">
</div>
</div>
</div>
</section>
<section id="about">`
<img src="https://i.pinimg.com/736x/85/e0/4e/85e04e00bfb5281b87d8154161861804.jpg" alt="">
<div class="about-text">
<p>Hello, I am Bama Charan from West Bengal, India. I am currently pursuing a B.Tech in Computer Science from Chitkara University and I am in my first year of college. <br> <br>
I am proficient in HTML and CSS and am currently learning JavaScript. I also have knowledge of data structures in Java language. I am also exploring DevOps and have completed several projects based on my skills. You can check them out on my GitHub profile. Additionally, I have shared my achievements on LinkedIn which you can also check out.</p>
<div class="social-link">
<ul>
<a href="https://www.linkedin.com/in/bama-charan-chhandogi-b63420240/" target="_blank"><li>linkedin</li></a>
<a href="https://github.com/BamaCharanChhandogi" target="_blank"><li>Github</li></a>
<a href="https://twitter.com/BamacharanCh" target="_blank"><li>Twitter</li></a>
</ul>
</div>
</div>
.
</section>
<section id="skills">
<div class="max-width">
<h2 class="title">My Skills</h2>
<div class="skills-content">
<div class="col left">
<div class="text">My creative skills & experiences.</div>
<p>I am proficient in HTML and CSS and am currently learning JavaScript. I also have knowledge of data structures in Java language. I am also exploring DevOps and have completed several projects based on my skills. You can check them out on my GitHub profile. Additionally, I have shared my achievements on LinkedIn which you can also check out.</p>
<a href="" class="about-img">Read More</a>
</div>
<div class="col right">
<div class="bars">
<div class="info">
<span>HTML</span>
<span>100%</span>
</div>
<div class="line html"></div>
</div>
<div class="bars">
<div class="info">
<span>CSS</span>
<span>80%</span>
</div>
<div class="line css"></div>
</div>
<div class="bars">
<div class="info">
<span>kubernetes</span>
<span>100%</span>
</div>
<div class="line k8s"></div>
</div>
<div class="bars">
<div class="info">
<span>JAVA</span>
<span>70%</span>
</div>
<div class="line java"></div>
</div>
<div class="bars">
<div class="info">
<span>JavaScript</span>
<span>100%</span>
</div>
<div class="line javascript"></div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>