-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (82 loc) · 3.42 KB
/
index.html
File metadata and controls
95 lines (82 loc) · 3.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link href="styleSheet.css" rel="stylesheet">
<title>Ivan Iankovskyi</title>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-8229008351168346",
enable_page_level_ads: true
});
</script>
</head>
<body>
<div class="wrapper">
<div class="header">
<div class="hiddenTitle" id="main">Welcome to my blog!</div>
<div class="hiddenTitle" id="about">About me</div>
<div class="hiddenTitle" id="contacts">My contacts</div>
<div class="hiddenTitle" id="photos">Photos</div>
<div class="hiddenTitle" id="articles">Articles</div>
</div>
<div class="menu">
<ul>
<li class="about"></li>
<li class="contacts"></li>
<li class="photos"></li>
<li class="articles"></li>
</ul>
</div>
<div class="container">
<div class="hiddenContent" id="mainContent">
Welcome!
<div class="image">
<img src="http://i.imgur.com/3jOSH6M.jpg">
</div>
</div>
<div class="hiddenContent" id="aboutContent">Angus Young was born on March 31, 1955 in Glasgow, Scotland.
At school, Angus was an unenthusiastic student. His only real academic interest was art wich allowed
him some freedom of expression. He gave up school at 15 and went to work for a soft porn magazine
called Ribald as a printer. But his ambitions laid elsewhere anyway, and for a year prior to leaving
school Angus had been practising guitar almost constantly, jamming around with friends and playing at
school dances.</div>
<div class="hiddenContent" id="contactsContent">
<ul>
<li class="skype">
<div class="image">
<img src="http://i.imgur.com/Hqwxpbw.png">
</div>
<div class="text">yankiman</div>
</li>
<li class="mail">
<div class="image">
<img src="http://i.imgur.com/PoNWibz.png">
</div>
<div class="text">Ivan_Iankovskyi@epam.com</div>
</li>
<li class="mobile">
<div class="image">
<img src="http://i.imgur.com/mK511EI.png">
</div>
<div class="text">+38 (091) 900 29 99</div>
</li>
</ul>
</div>
<div class="hiddenContent" id="photosContent">
<div class="photoGrid">
<ul>
<li class="photoElement"></li>
</ul>
</div>
</div>
<div class="hiddenContent" id="articlesContent">
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="main.js"></script>
</body>
</html>