-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (70 loc) · 2.59 KB
/
index.html
File metadata and controls
104 lines (70 loc) · 2.59 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
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
<!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">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<center>
<h2 data-aos="flip-left">Enter Your Detail To Make Your Portfolio</h2>
<br><br>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i1"><br><br>
<label>Enter your Name:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i10"><br><br>
<label>Enter Your Full Name:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="number" maxlength="2" min="2" max="2" id="i2"><br><br>
<label>Enter Your Age:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i3"><br><br>
<label>Enter your Designation:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i4"><br><br>
<label>Enter Your Hobby:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i5"><br><br>
<label>Enter Your Designation:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i6"><br><br>
<label>Enter Your qualification:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="text" id="i11"><br><br>
<label>Enter Your Services:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="email" id="i7"><br><br>
<label>Enter your Email:</label>
</div>
<div class="input-box" data-aos="fade-down-right">
<input type="number" id="i8"><br><br>
<label>Enter Your Phone Number:</label>
</div>
<div class="box" data-aos="fade-down-right">
<textarea required placeholder=" " id="i9" data-aos="fade-down-right"></textarea>
<label>Write a One Paragraph About Your Self</label>
</div>
<br><br>
<button onclick="saveData()" class="cal" data-aos="flip-left">Submit your Detail</button>
<!-- <button onclick="fd()" class="cal" data-aos="fade-down-right">💬 </button> </center> -->
<br><br>
<a href="output.html"><button class="cal">Click To See Your Portfolio</button></a>
</center>
<script src="app.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>