-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Social Technological Cycle</title>
<link href="https://fonts.googleapis.com/css?family=Cairo" rel="stylesheet">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header style="text-align:center">
<h1>The Social-Technological Cycle</h1>
<h2>Communication within Social Media</h2>
<h3>by: Amanda Iverson</h3>
</header>
<div id="topnav">
<a id="home" data-idx=0>INTRO</a>
<a id="messenger" data-idx=1>MESSENGERS</a>
<a id="newspaper" data-idx=2>NEWSPAPERS</a>
<a id="telephone" data-idx=3>TELEPHONE</a>
<a id="radio" data-idx=4>RADIO</a>
<a id="internet" data-idx=5>SOCIAL MEDIA</a>
<a id="end" data-idx=6>CONCLUSION</a>
</div>
<div id="container">
<span id="prev" data-direction="prev">
<a data-direction="prev" href="#"><<</a>
</span>
<span id="next" data-direction="next">
<a data-direction="next" href="#">>></a>
</span>
<div id="content">
<h1 id="title"></h1>
<p id="description"></p>
<div id="images"></div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>