-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsingle.html
89 lines (67 loc) · 3.64 KB
/
single.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
<!doctype html>
<html>
<head>
<title>BoggaHore</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="naqshad.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header class="header clearfix">
<img class="logo" src="images/logo.png" alt="">
<nav class="navbar" id="nav">
<span class="gear right" onclick=showMenu();>☰</span>
<a href="index.html">Home</a>
<a href="category.html">Technology</a>
<a href="category.html">Programming</a>
<a href="category.html">Security</a>
<a href="category.html">Tutorials</a>
</nav>
</header>
<main class="main">
<section class="section">
<article class="article single clearfix">
<a href="single.html">
<img src="images/image2.jpg" class="post-image" />
</a>
<div class="content">
<h2>Microsoft Office 365 Is Now Available On Apple’s Mac Store</h2>
<p>Last year at WWDC Apple promised to launch Microsoft Office 365. Apple has finally announced on Thursday that Microsoft Office 365 is now available on Mac App Store. Users can now directly download the signature Microsoft apps such as Outlook, Word, PowerPoint, OneNote, and Excel on their MacOS computers.</p>
<hr>
<h4>Posted on 2019-11-01 16:05:41| TECHNOLOGY</h4>
</div>
</article>
</section>
<aside class="aside">
<div class="inner">
<h2>Recent Posts</h2>
<a href="single.html">Microsoft Office 365 Is Now Available On Apple’s Mac Store <b style="color:red">More..</b> </a>
<a href="single.html">Poisonous Gas Sensor On IPhone And Apple Watch <b style="color:red">More..</b> </a>
<a href="single.html">5 Best Artificial Intelligence Books <b style="color:red">More..</b> </a>
<a href="single.html">Best IOS System Repaire Tool To Get You Out Of All Kinds Of IPhone <b style="color:red">More..</b> </a>
</div>
<div class="inner">
<h2>Categories</h2>
<a href="category.html">TECHNOLOGY</a>
<a href="category.html">PROGRAMMING</a>
<a href="category.html">SECURITY</a>
<a href="category.html">TUTORIALS</a>
</div>
</div>
</aside>
</main>
<footer class="footer">
<h2>©copyright Somcoders Designed by Abdifatah Abdilahi</h2>
</footer>
</body>
<script>
function showMenu(){
var nav = document.getElementById("nav");
if(nav.className === "navbar" ){
nav.className += " responsive";
}else{
nav.className = "navbar";
}
}
</script>
</html>