-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact.html
More file actions
43 lines (40 loc) · 2.13 KB
/
react.html
File metadata and controls
43 lines (40 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>project</title>
<link rel="shortcut icon" type="image/png" href="./favicon-32x32.png">
<link rel="stylesheet" href="./css/project.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
</head>
<body>
<header>
<div class="col col-main">
<div class="content">
<a class="back-link" href="./index.html">
<h1 class="back-icon"><i class="fas fa-arrow-circle-left"></i>Go Back</h1>
</a>
<h1 class="project-head">React Resume Builder</h1>
<p class="completed">Completed</p>
<div class="btn-div">
<a href="http://resumetoimpress.netlify.com/" class="btn-contact">VIEW PROJECT</a>
<a href="https://github.com/AbioticSpoon/Resume-Builder-Using-React"
class="btn-contact">VIEW CODE</a>
</div>
<h3 class="details">Details</h3>
<p class="detail-para">This project is a simple website that takes user input such as Personal Details, Education details, Experience details and Skills to generate a pdf file.
<br><br>
The website contains of two total comoponents, a hero comoponent and a form comoponent with four sub-components which include forms to accept various user details neccessary for the resume.
<br><br>
After accepting the user details, the form is converted to pdf format using a react-pdf npm module, This feature is still gimmicky and I am working towards improving it.</p>
<h3 class="tech details">Technologies used</h3>
<li>React.JS</li>
<li>Bootstrap 4</li>
</div>
</div>
<div class="col col-bg-yellow"></div>
</header>
</body>
</html>