-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (52 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/homepage.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="js/session.js"></script>
<title>
ProinBlog
</title>
</head>
<body>
<div class="header">
<h2 class="importantInfos">Inpro <span class="whiteImportant">blog</span></h2>
</div>
<ul id="menuNavId" class="menuNav">
<li class="menuItems"><a class="menuNames active" href="index.html">Home</a></li>
<li class="menuItems"><a class="menuNames" href="sub/posts.html">Posts</a></li>
<li class="menuItems"><a class="menuNames" href="sub/chat.html">Chat</a></li>
<li class="menuItems"><a class="menuNames" href="sub/myprofile.html">About me</a></li>
<li class="menuItems" id="signInMenu"><a class="menuNames" href="sub/signin.html">Sign in</a></li>
</ul>
<div class="homeIntro">
<div class="imgcontainer">
<img src="img/homepage1.png" alt="Avatar" class="avatarHome">
</div>
<p class="welcomeTitle">
Hello there!
</p>
<div class="imgcontainer">
<img src="img/homepage2.png" alt="Avatar" class="tooBigImage">
</div>
<p class="welcomeText">
Welcome to <span class="whiteImportant">InPro</span> blog.
<br>
Here you can read my opinions on certain things, events
and ideas.
</p>
<div class="imgcontainer">
<img src="img/homepage3.png" alt="Avatar" class="tooBigImage">
</div>
<p class="welcomeText">
I am a software developer, university student,
book lover.
<br>
Feel free to share your thoughts about my posts.
I hope you will like this little community.
</p>
</div>
</body>
<script src="js/user.js"></script>
<script src="js/logout.js"></script>
</html>