forked from shantamsultania/portfolio-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.php
More file actions
26 lines (26 loc) · 714 Bytes
/
portfolio.php
File metadata and controls
26 lines (26 loc) · 714 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<link rel="Stylesheet" type="text/css" href="style.css">
</head>
<body>
<main>
<h1>INTRODUCTION</h1>
<form class="form" action="contactform.php" method-"post">
<input type="text" name="name" placeholder="Full name:"><br>
<br>
<input type="text" name="title" placeholder="Title:"><br>
<br>
<input type="text" name="designation" placeholder="Designation:"><br>
<br>
<input type="text" name="about" placeholder="About:"><br>
<br>
<label for="fileupload"> Select a file to upload: </label>
<input type="file" name="fileupload" value="fileupload" id="fileupload"><br>
<br>
<button type="submit"> SUBMIT </button>
</form>
</main>
</body>
</html>