-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 715 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 715 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="desktop.css">
<link rel="stylesheet" href="tablet.css">
<link rel="stylesheet" href="mobile.css">
<link rel="stylesheet" href="deviceSelector.css">
</head>
<body>
<div id="desktop" class="desktop">
<!--Your Desktop Code-->
<h1>Only On Desktop</h1>
</div>
<div id="tablet" class="tablet">
<!--Your Tablet Code-->
<h1>Only On Tablet</h1>
</div>
<div id="mobile" class="mobile">
<!--Your Mobile Code-->
<h1>Only On Mobile</h1>
</div>
</body>
</html>