-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
48 lines (48 loc) · 2.26 KB
/
home.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
<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>Resume Generator</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 id="head">Resume Generator</h1><br>
<h3 id="details">Personal Information</h3><br>
<div id="display" class="container" ><form>
<div class="mb-3">
<label class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter name">
</div>
<div class="mb-3">
<label class="form-label">Email address</label>
<input type="email" class="form-control" id="email" placeholder="[email protected]">
</div>
<div class="mb-3">
<label class="form-label">LinkedIn Profile Link</label>
<input type="text" class="form-control" id="Link" placeholder="https://www.linkedin.com/in/example-21/">
</div>
<div class="mb-3">
<label for="formFile" class="form-label">Upload image file*(required)</label>
<input class="form-control" type="file" id="file" required>
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Address</label>
<textarea class="form-control" id="address" rows="3" placeholder="Enter here" ></textarea>
</div>
<button type="button" id="next" class="btn btn-primary bottom">Next</button>
<button type="reset" class="btn btn-primary bottom">Reset</button>
</form>
</div>
<!--contact Us -->
<div class="fixed-bottom" style=" background-color: #adb5bd;" id="bot">
<div class="container" ><h3>Follow Us</h3>
<a href="">Twitter</a><br>
<a href="">facebook</a><br>
<a href="https://www.linkedin.com/in/subhamay-nath-a70a53221/">LinkedIn</a><br>
</div>
</div>
<script src="index.js"></script>
</body>
</html>