-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.html
92 lines (89 loc) · 3.7 KB
/
job.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>私は仕事を求めています。</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:[email protected]&family=Noto+Serif+JP:[email protected]&family=Shippori+Mincho&display=swap');
</style>
</head>
<body>
<main id="left">
<h1>私は仕事を求めています。</h1>
<p>私の名前:ひまおーぐ</p>
<p>私の住所:岡山県岡山市</p>
<p>ポートフォリオ:このwebサイト</p>
<p>出来ること:webサイト制作</p>
<p><br></p>
<h1 class="form">お仕事受付フォーム</h1>
<form action="/job.php" method="post">
<label for="name">名前:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="email">メールアドレス:</label>
<input type="text" id="email" name="email" required>
<br>
<label for="comment">コメント:</label>
<textarea class="comment" name="comment" rows="5" cols="40" required></textarea> <br>
<button type="submit">送信</button>
</form>
</main>
<main id="right">
<h1>私は労働者を求めています。</h1>
<p>あなたの過去の実績:どうでもいい</p>
<p id="location">あなたの住所:どこでもいい</p>
<p>あなたが労働する場所:このwebサイト</p>
<p>労働内容:考え中</p>
<p>報酬:広告収入の一部</p>
<h1 class="form">労働者受付フォーム</h1>
<form action="/job.php" method="post">
<label for="name">名前:</label>
<input type="text" id="name" name="name" required>
<br>
<label for="email">メールアドレス:</label>
<input type="text" id="email" name="email" required>
<br>
<label for="comment">コメント:</label>
<textarea class="comment" name="comment" rows="5" cols="40" required></textarea> <br>
<button type="submit">送信</button>
</form>
</main>
<style>
body{
font-family: "Shippori Mincho", serif;
font-optical-sizing: auto;
display: flex;
}
#left, #right {
width: 50%;
box-sizing: border-box;
padding: 20px;
}
.comment {
width: 100%;
height: 300px;
box-sizing: border-box;
color: #cccccc;
background-color: #1f1f1f;
font-size: 18px;
font-family: "Shippori Mincho", serif;
font-optical-sizing: auto;
}
</style>
<script>
const comments = document.getElementsByClassName('comment');
for (let comment of comments) {
comment.addEventListener('keydown', function(e) {
if (e.key === 'Tab') {
e.preventDefault();
const start = this.selectionStart;
const end = this.selectionEnd;
this.value = this.value.substring(0, start) + "\t" + this.value.substring(end);
this.selectionStart = this.selectionEnd = start + 1;
}
})
}
</script>
</body>
</html>