20 lines
502 B
HTML
20 lines
502 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, height=device-height, initial-scale=1, user-scalable=0"
|
|
/>
|
|
<title>TP: Photo</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<ol>
|
|
<li><input type="file" name="image" /></li>
|
|
<li><input type="text" name="title" /></li>
|
|
<li><button>Print!</button></li>
|
|
</ol>
|
|
</form>
|
|
</body>
|
|
</html>
|