-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (125 loc) · 4.47 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>resume generator</title>
<script src="https://kit.fontawesome.com/99a53a72ee.js" crossorigin="anonymous"></script><script src="https://kit.fontawesome.com/99a53a72ee.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script src="back.js">
</script>
<link rel="stylesheet" href="weblook.css">
</head>
<body>
<div class="container">
<h1 class="text-center my-2">resume generator</h1>
<p class="text-center my-2">by gaurav rathore</p>
<div class="row">
<!-- first column of row -->
<div class="col-md-6">
<h1>Pesonal information</h1>
<div class="form-group mt-2">
<label for="namefield">Your name</label>
<input type="text" id="namefield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2">
<label for="namefield">phone</label>
<input type="text" id="namefield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2">
<label for="namefield">email</label>
<input type="text" id="namefield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2">
<label for="namefield">Your age</label>
<input type="date" id="namefield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2 ">
<label for="namefield">Your Address</label>
<textarea class="form-control" id="contactField"
placeholder="Enter Address" rows="5 ">
</textarea>
</div>
<br>
<form action="upload.php" method="post" enctype="multipart/form-data">
<label>Select photo File:</label>
<input type="file" name="image">
<input type="submit" name="submit" value="Upload">
</form>
<br>
<!-- <form action="upload.php" method="post" enctype="multipart/form-data">
<label>Select Signature File:</label>
<input type="file" name="image">
<input type="submit" name="submit" value="Upload">
</form>
<br> -->
<!-- important links -->
<br>
<p>important links</p>
<div class="form-group mt-2">
<label for="linkedfield">LinkedIn <i class="fa-brands fa-linkedin"></i></label>
<input type="text" id="linkedfield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2">
<label for="githubfield">Github <i class="fa-brands fa-github"></i></label>
<input type="text" id="githubfield" placeholder="Enter here"
class="form-control">
</div>
<div class="form-group mt-2">
<label for="instagramfield">Instagram <i class="fa-brands fa-instagram"></i></label>
<input type="text" id="instagramfield" placeholder="Enter here"
class="form-control">
</div>
</div>
<!-- second colomn of row -->
<div class="col-md-6">
<h1>professional skills</h1>
<br>
<div class="form-group mt-2">
<label for="namefield">Acadmic qualification</label>
<textarea class="form-control" id="contactField"
placeholder="Enter Acadmic qualification" rows="4 ">
</textarea>
</div>
<div class="form-group mt-2">
<label for="namefield">Work Experience</label>
<textarea class="form-control" id="contactField"
placeholder="Enter Work Experience" rows="4 ">
</textarea>
</div>
<br>
<div class="form-group mt-2">
<label for="namefield">Skills</label>
<textarea class="form-control" id="contactField"
placeholder="Enter Skills" rows="4 ">
</textarea>
</div>
<br>
<div class="form-group mt-2">
<label for="namefield">Summary</label>
<textarea class="form-control" id="contactField"
placeholder="Enter Summary" rows="4 ">
</textarea>
</div>
<br>
<!-- <button type="button" id="myBtn" onclick="myFunction()">Generate CV</button> -->
<a class="footer-link btn" href="file:///C:/Users/gaura/Documents/web%20development/html-mysite/cvWebsite.html">
Genrate CV</a>
</div>
</div>
<script>
$(document).ready(function() {
$('body').bind('cut copy', function(e) {
e.preventDefault();
});
});
</script>
</div>
</body>
</html>