-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainpage.html
More file actions
74 lines (72 loc) · 3.19 KB
/
mainpage.html
File metadata and controls
74 lines (72 loc) · 3.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dictionary</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script>
</head>
<body>
<div class="b-popup" id="popup1">
<div class="pop-up-content">
<div class="exit">
<a href="javascript:PopUpHide('#popup1')">X</a>
</div>
<h1>Регистрация</h1>
<input type="text" placeholder="Фамилия" size="22"><br>
<input type="text" placeholder="Имя" size="22"><br>
<input type="text" placeholder="Email" size="22"><br>
<input type="text" placeholder="Phone Number" size="22"><br>
<input type="text" placeholder="Password" size="22"><br>
<input type="text" placeholder="Confirm Password" size="22"><br>
<button class="aplybutton">Готово</button>
</div>
</div>
<div class="b-popup" id="popup2">
<div class="pop-up-content">
<div class="exit">
<a href="javascript:PopUpHide('#popup2')">X</a>
</div>
<h1>Войти</h1>
<input type="text" placeholder="Email or Phone Number" size="22"><br>
<input type="text" placeholder="Password" size="22"><br>
<button class="aplybutton">Готово</button>
</div>
</div>
<header class="head">
<div class="head__up">
<div class="head__logoText">
<h2 ><a href="">Dictionary</a></h2>
</div>
<div class="head__login">
<h3><a class="head__sign" href="javascript:PopUpShow('#popup2')">Войти</a></h3>
<!-- <h3><a class="head__sign active" href="">Выход</a></h3> -->
<!-- <h3><a class="head__sign active" href="">Выход</a></h3> -->
<h3><a class="head__sign" href="javascript:PopUpShow('#popup1')">Регистрация</a></h3>
</div>
</div>
<div class="wrap1">
<input class="inpt" type="text" size="40">
<button class="btn">Искать</button>
<div class="head__lang">
<h3><a href="">Русский</a></h3>
</div>
</div>
</header>
<div class="main">
<div class="main__block">
<img src="images/p1.png" alt="Тут была фотография , но сегодня она ушла домой на выходной">
</div>
<div class="main__text">
<h1>Dictionary</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<!-- <button class="btn"><a href="javascript:PopUpShow('#popup1')">Search it now!</a></button>-->
</div>
</div>
</div>
<footer class="foot">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. <br>Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,<br> when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>