-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
167 lines (157 loc) · 6.36 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!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>PORTFOLIO</title>
<link rel="stylesheet" href="./portfolio/index.css" />
</head>
<body>
<header class="header_section">
<div class="container">
<nav class="navbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="navbar-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="navbar-link" href="#page1">Skills</a>
</li>
<li class="nave-item">
<a class="navbar-link" href="#page2">Projects</a>
</li>
<li class="nave-item">
<a class="navbar-link" href="#page3">Contacts</a>
</li>
<div class="searchbox">
<input type="text" name="search" id="search" placeholder="type to search..."
style="padding: 5px 5px; margin: 5px;">
</div>
</ul>
</nav>
</div>
</header>
<div id="main">
<div id="page">
<img src="./portfolio/port_img.jpg" style="padding: 150px;
border-radius: 50%;" alt=""/>
<div id="text">
<h2>Hello</h2>
<h1>I'm Braj Narayan Awasthi</h1>
<h4>
I'm enthusiastic learner diving into the world of web development
with growing expertise in HTML,CSS and JavaScript. Eager to
create engaging and user-friendly interfaces.
Delving into the realms of C++ and JAVA programming
steadily building a foundation in software development.
</h4><br><br>
<div id="buttons">
<button id="b2">
<a href="resume_link_here">RESUME</a>
</button>
</div>
</div>
</div>
<!-- ------------------------------------------------- -->
<!-- ------------------------------------------------- -->
<br>
<div id="page1">
<div id="right">
<div id="text1"><br>
<h1>My Skills</h1>
<h4>
Passionate web developer with a flair for crafting engaging
online experiences. Proficient in HTML,CSS and JavaScript.
</h4>
</div>
</div>
<div id="left">
<div class="box">
<h1>Competative Programming</h1>
<p>
I regularly do Competative coding since I love problem
solving.
</p>
</div>
<div class="box">
<h1>Design and development</h1>
<p>
I have developed many websites and projects. Over time
I have gained a wealth of experience designing and
developing web applications.
</p>
</div>
<div class="box">
<h1>Machine Learning</h1>
<p>I'm Machine Learning Enthusiast.</p>
</div>
</div>
</div>
<div id="page2">
<div id="text4">
<h1>My Projects</h1>
</div>
<div id="project">
<div class="projects p1">
<div id="text3">
<h1>Weather Website</h1>
</div>
<div id="image">
<a href="C:\Users\HP-PC\Desktop\porfolio\weather_img.jpg">
<img src="./portfolio/weather_img.jpg" alt="image loading" />
</a>
</div>
</div>
<div class="projects p2">
<div id="text3">
<h1>TO-DO LIST </h1>
</div>
<div id="image">
<a href="C:\Users\HP-PC\Desktop\porfolio\todo.jpg">
<img src="./portfolio/todo.jpg" alt="image loading" />
</a>
</div>
</div>
<div class="projects p3">
<div id="text3">
<h1>Netflix Page </h1>
</div>
<div id="image">
<a href="C:\Users\HP-PC\Desktop\porfolio\netflix_img.png">
<img src="./portfolio/netflix_img.png" alt="image loading" />
</a>
</div>
</div>
</div>
</div>
<section class="end">
<div id="page3" class="contact-me">
<br /><br />
<h2>Get In Touch</h2>
<br />
<h2 class="collab">Lets Collab and do a project
<br>
<p>Contact Me</p>
</h2>
<a class="btn" href="C:\Users\HP-PC\Desktop\porfolio\gmail_img.png">
<img src="./portfolio/gmail_img.png" width="40px" height="40px" />
</a>
<a class="btn" href="C:\Users\HP-PC\Desktop\porfolio\linkedin.png">
<img src="./portfolio/linkedin.png" width="40px" height="40px" />
</a>
<a class="btn" href="C:\Users\HP-PC\Desktop\porfolio\github.png">
<img src="./portfolio/github.png" width="40px" height="40px" />
</a>
</div><br><br>
<br><br>
<div class="bottom-container">
<div style="width: 50%; margin-left: auto; margin-right: auto">
<br>
<p class="copyright">© 2023 Portfolio.</p>
</div>
</div>
</section>
</div>
</body>
</html>