-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (92 loc) · 5.27 KB
/
index.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8"/>
<title>Murray</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css"/>
<script src="skrypt.js"></script>
</head>
<body>
<container>
<main>
<!-- dodać socjale w prawym górnym rogu na żółtym tle-->
<div class="info">
<h1 id="hi"></h1>
<h2>Do you want recive news?<br/>
</h2>
<a href="#newsletter" onclick="typeWriter()">
<input class="text" placeholder="Wpisz swój email" required type="email"/>
<input class="submit" type="submit" value="Join my newsletter!"/>
</a>
</div>
<div class="person">
<img class="garniak" src="garnitur.png"/>
<div class="socjals">
<a href="#" title="Some website"><img src="balance.png" width="45px"/></a>
<a href="#" title="Facebook"><img src="facebook.png" width="45px"/></a>
<a href="#" title="Instagram"><img src="instagram.png" width="45px"/></a>
</div>
</div>
</main>
<article class="information">
<h1>Who is Murray Rothbard?</h1>
<p>Murray Newton Rothbard andAmerican economist of the Austrian School, economic historian and political theorist. Rothbard was the founder and leading theoretician of anarcho-capitalism, a staunch advocate of historical revisionism and a central figure in the 20th-century American libertarian movement. He wrote over twenty books on political theory, revisionist history, economics, and other subjects.</p>
</article>
<article class="books">
<div class="box_books">
<div class="book"><a href="#"><img alt="book" src="book1.jpg" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book2.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book3.jpg" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book4.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book5.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book6.png" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book7.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book8.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book9.jfif" height="250px"/></a></div>
<div class="book"><a href="#"><img alt="book" src="book10.jfif" height="250px"/></a></div>
</div>
</article>
<article class="heros">
<h1>Other Great People</h1>
<div class="box_heros">
<div class="hero">
<img src="MurrayBW.png"/>
<div class="rectangle"></div>
<span>Click to get more information</span>
</div>
<div class="hero">
<img src="MurrayBW.png"/>
<div class="rectangle"></div>
<span>Click to get more information</span>
</div>
<div class="hero">
<img src="MurrayBW.png"/>
<div class="rectangle"></div>
<span>Click to get more information</span>
</div>
<div class="hero">
<img src="MurrayBW.png"/>
<div class="rectangle"></div>
<span>Click to get more information</span>
</div>
<div class="hero">
<img src="MurrayBW.png"/>
<div class="rectangle"></div>
<span>Click to get more information</span>
</div>
</div>
</article>
<footer>
<div>
<a href="#" title="Some website"><img src="balance.png" width="45px"/></a>
<a href="#" title="Facebook"><img src="facebook.png" width="45px"/></a>
<a href="#" title="Instagram"><img src="instagram.png" width="45px"/></a>
<a href="#" title="Developer website"><img src="web-programming.png" width="45px"/></a>
</div>
<h3>Developed by NOONE ©</h3>
</footer>
</container>
</body>
</html>