forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
42 lines (40 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#000000">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<title>HYF-JavaScriptWeek09</title>
<link rel="apple-touch-icon" href="hyf.png">
<link rel="shortcut icon" type="image/png" href="hyf.png" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<!-- <body onload="main()"> -->
<body>
<div class="root">
<div class="header">
<label for="repositories">HYF Repositories</label>
<select id="repositories">
<option selected="Choose Repository">Choose a Repository</option>
</select>
</div>
<div class="body row">
<div id="repo_info" class="repo_info">
</div>
<div id="repo_contributors" class="repo_contributors">>
<!-- <div id="contributorList">
</div> -->
</div>
</div>
</div>
<!-- <script src="index.js"></script> -->
<script src="App.js"></script>
<script src="Util.js"></script>
<script src="Repository.js"></script>
<script src="Contributor.js"></script>
</body>
</html>