-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
181 lines (178 loc) · 5.99 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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<div class="main-nav">
<ul>
<li>
<a href="">HOME</a>
<a href="#about-me">ABOUT ME</a>
<a href="#hero">PROJECTS</a>
<a href="#skills">SKILLS</a>
<a href="#contact">CONTACT</a>
</li>
</ul>
</div>
<div class="container1" >
<div class="content">
<h1>Hi, my name is <br /><span>Prosper Chinoda</span></h1>
<h3 id="typeAnimation"></h3>
<a href="ProsperChinodaCV-2023InternHIT.pdf" download="ProsperChinodaCV-2023InternHIT" class="download-btn">RESUME</a>
<a href="ProsperChinodaCV-2023InternHIT.pdf" target="_blank" class="download-btn">HIRE ME</a>
</div>
</div>
<div class="skills" id="skills">
<h2>MY SKILLS</h2>
<div class="skillsContent">
<div class="skillsContent1">
<h4>HTML5</h4>
<progress
value="88"
min="0"l
max="100"
class="progress"
></progress>
<h4>CSS3</h4>
<progress
value="70"
min="0"
max="100"
class="progress"
></progress>
<h4>Javascript / ES6</h4>
<progress
value="72"
min="0"
max="100"
class="progress"
></progress>
<h4>Node.js</h4>
<progress
value="65"
min="0"
max="100"
class="progress"
></progress>
</div>
<div class="skillsContent2">
<h4>Python</h4>
<progress
value="60"
min="0"
max="100"
class="progress"
></progress>
<h4>React</h4>
<progress
value="30"
min="0"
max="100"
class="progress"
></progress>
<h4>MongoDB</h4>
<progress
value="65"
min="0"
max="100"
class="progress"
></progress>
<h4>Git & Github</h4>
<progress
value="90"
min="0"
max="100"
class="progress"
></progress>
</div>
</div>
</div> <br /><br /><br />
<div class="about-me" id="about-me">
<div class="about">
<img src="img3.jpg" alt="" srcset="" width="400" height="300">
<div class="txt">
<h2>About Me</h2>
<p>Prosper Chinoda is a tech-savvy individual with a deep passion for web development and programming.
He enjoys finding efficient solutions to complex problems.
He often using his skills to design visually appealing websites and applications</p>
<button>RESUME</button>
</div>
</div>
</div>
<br /><br /><br /> <br />
<div class="section1">
<div class="hero" id="hero">
<h2>My Projects</h2>
</div>
<div class="box">
<div class="too-much">
<div class="boxes" id="box1"></div>
<p>I built a website for a<br>fast food company</p>
</div>
<div class="too-much">
<div class="boxes" id="box2"></div>
<p>This website was for a <br>petrol station</p>
</div>
<div class="too-much">
<div class="boxes" id="box3"></div>
<p>This was a website<br>for selling masks</p>
</div>
<div class="too-much">
<div class="boxes" id="box4"></div>
<p>This was a crash course<br>website I built</p>
</div>
</div>
</div>
<br /><br /><br /> <br />
<div class="section2">
<blockquote>This is a inspiring quote, or testimonial from a<br>customer. Maybe its just filling up spaces, or maybe<br>people will actually read it. Who knows? All I know is that it looks nice <br><br><cite> -Thor, God of Thunder</cite></blockquote>
</div>
<br /><br /><br /> <br /><br /><br />
<div class="section3" id="contact">
<div class="actionbox">
<form>
<h2>Contact Me</h2>
<label for="name"> Name: </label><br />
<input
type="text"
class="formInput"
name="name"
id="name"
/><br /><br />
<label for="email"> E-mail: </label><br />
<input
type="text"
class="formInput"
name="email"
id="email"
/><br /><br />
<textarea
style="resize: none"
type="text"
class="formInput"
name="message"
id="message"
placeholder="Type message..."
></textarea>
<br /><br />
<div class="submit">
<button class="formInput" type="submit">Send</button>
</div>
</form>
</div>
</div>
<br /><br /><br /> <br /><br /><br />
<div class="footer">
<p>
Copyright ©2023 All rights reserved | Build and Designed by Prosper Chinoda
</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>