-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
46 lines (34 loc) · 803 Bytes
/
blog.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Blog</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- header -->
<div class="header">
<div class="company-info">
<img class="company-icon" src="images/icon.png">
<img class="company-name" src="images/company-name.png">
</div>
<!-- end header -->
</div>
<div class="navbar">
<div class="nav-info">
<a href="index.html">Games</a>
<a href="gallery.html">Gallery</a>
<a class="current-page" href="blog.html">Blog</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
</div>
<!-- content -->
<div class="content-container">
<div class="content">
<h1>Blog</h1>
<hr>
</div>
<!-- end content container -->
</div>
</body>
</html>