-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
44 lines (40 loc) · 1.75 KB
/
contacts.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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>рисунки максима</title>
<link rel="stylesheet" href="css4.css">
<script>
function isEmail()
{
var name = prompt('Please excuse all my sarcastic responses. Thank you');
alert('Oh, you wrote ' + name +'! I did not even expect that, you surprised me.');
}
</script>
</head>
<body>
<a href="" class="floating-button" onclick="isEmail()"> Жмякни меня</a>
<nav>
<ul>
<li><a href="aboutme.html" target="_self" text="Обо мне">Обо мне</a></li>
<li><a href="myworks.html" target="_self" text="Мои работы">Мои работы</a></li>
<li><a href="reviews.html" target="_self" text="Отзывы">Отзывы</a></li>
<li><a href="contacts.html" target="_self" text="Контакты">Контакты</a></li>
</ul>
<div class="card">
<p><h1>СВЯЗАТЬСЯ СО МНОЙ</h1></p>
</div>
<div class="card2">
<p>Если у вас остались вопросы, пожалуйста, отправьте мне открытку ;)</p>
<p>Я вам отвечу, обещаю!</p>
</div>
<div class="form-group">
<label for="text">Вашe сообщение:</label>
<textarea id="text" rows="2" cols="15"></textarea>
</div>
<form action="send.php" method="post">
<input class="btn" name="message" type="submit" value="Отправить">
</form>
</nav>
</body>
</html>