-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (64 loc) · 3.18 KB
/
Copy pathabout.html
File metadata and controls
82 lines (64 loc) · 3.18 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" href="images/logo.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trending | About</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="js/functions.js"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- My CSS -->
<link href="styles/style.css" rel="stylesheet" type="text/css"></title>
</head>
<body>
<div class="container">
<!-- Navbar-->
<div class="row">
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/logo.png" alt="What's Trending?"></a>
</div>
<div id="navbar1" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="entertainment.html">Entertainment</a></li>
<li><a href="news.html">News</a></li>
<li><a href="sports.html">Sports</a></li>
<li><a href="technology.html">Technology</a></li>
<li class="active"><a href="about.html">About</a></li>
</ul>
</div>
</nav>
</div>
<!-- Jumotron -->
<div class="row">
<div class="jumbotron">
<h1>About</h1>
<p>Watch, read, and see what is trending right now in real time!</p>
<img src="images/logo.png" width="50" height="50" alt="trending"><br>
</div>
</div>
<p class="lead text-center">Watch, read, and see what is trending right now in real time!<br><br><i>What's Trending</i> uses developer's API of YouTube, CNN, Reddit, and various major newslines to display and update the trending posts in real time. I created the website using HTML, CSS/Bootstrap, and JavaScript. I hope you enjoyed your visit!<br><br>You can learn more about me at <a href="https://sites.google.com/uci.edu/wonjoolee/" target="_blank">my website.</a></p>
<br><br><br>
<div class="row">
<div class="col-xs-12">
<div class="panel-footer">Created by WJL, source code available at <a href="https://github.com/wonjoolee95/whatstrending/tree/master" target="_blank">this github repostory</a></div>
</div>
</div>
</div>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>