-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (37 loc) · 1.5 KB
/
index.html
1
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Duplicate Counter</title> <link rel="stylesheet" href="./stylesheet/reset.css"> <link href='https://fonts.googleapis.com/css?family=Noticia+Text:400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="./stylesheet/index.css"></head><body> <section class="input" id="input"> <h1>Duplicate Counter</h1> <form id="form" action=""> <div class="form-keywords"> Keywords<br> <input type="text" name="keywords" placeholder="places,check-in,status,post,apps,group.," size="40"> </div> <div class="form-description"> New Description<br> <textarea name="description1" id="" cols="40" rows="10"></textarea> </div> <div class="form-description"> Current Description<br> <textarea name="description2" id="" cols="40" rows="10"></textarea> </div> <input type="submit" value="COUNT"> </form> </section> <section class="output" id="output"> </section> <script type="text/javascript" src="./bower_components/Chart.js/Chart.min.js"></script> <script type="text/javascript" src="./bower_components/react/react.min.js"></script> <script type="text/javascript" src="./bower_components/underscore/underscore-min.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.min.js"></script> <script type="text/babel" src="./js/index.js"></script></body></html>