-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Phone Application Template</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="style.scss" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<!-- Simulate a smartphone/tablet -->
<div class="mobile-container">
<!-- Top Navbar -->
<div class="topnav">
<a href="#homepage" class="active">Phone Application Template</a>
<div id="myLinks">
<a href="#latest">Latest</a>
<a href="#media">Media</a>
<a href="#contact">Contact</a>
<a href="#ourstory">Our Story</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div style="padding-left:16px">
<h3>BREAKING NEWS TITLE</h3>
<p>
What's going on? Tell the reader more about the headlines here!
</p>
</div>
<!-- End smartphone/tablet look -->
</div>
</body>
</html>