-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2854056
commit b5fa78f
Showing
1 changed file
with
30 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,20 +13,37 @@ | |
|
||
gtag("config", "UA-129399191-2"); | ||
</script> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title>autoComplete.js - Vanilla Javascript</title> | ||
<meta property="og:title" content="autoComplete.js - Simple autocomplete pure vanilla Javascript library." /> | ||
<meta property="og:type" content="demo" /> | ||
<meta property="og:url" content="https://tarekraafat.github.io/autoComplete.js/demo/" /> | ||
<meta property="og:image" content="https://tarekraafat.github.io/autoComplete.js/img/autoComplete.js.svg" /> | ||
<meta property="og:title" content="autoComplete.js - Simple autocomplete pure vanilla Javascript library."> | ||
<meta property="og:type" content="demo"> | ||
<meta property="og:url" content="https://tarekraafat.github.io/autoComplete.js/demo/"> | ||
<meta property="og:image" content="https://tarekraafat.github.io/autoComplete.js/img/autoComplete.js.svg"> | ||
<meta name=”description" content=”autoComplete.js is an easy-to-use simple pure vanilla Javascript library thats built for speed, high versatility and seamless integration with wide range of projects and systems."> | ||
<meta name="keywords" content="autoComplete.js, easy-to-use, simple, pure, vanilla, Javascript, JS, library, speed, Lightning, fast, Versatile, Customizable, hackable, developer friendly, zero, no, Dependencies, Lightweight, high, integration, scalable, scalability, open source, open, source, guthub" /> | ||
<meta name="author" content="Tarek Raafat" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected]/dist/css/autoComplete.min.css" /> | ||
<link rel="stylesheet" type="text/css" media="screen" href="./css/main.css" /> | ||
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet" /> | ||
<meta name="keywords" content="autoComplete.js, easy-to-use, simple, pure, vanilla, Javascript, JS, library, speed, Lightning, fast, Versatile, Customizable, hackable, developer friendly, zero, no, Dependencies, Lightweight, high, integration, scalable, scalability, open source, open, source, guthub"> | ||
<meta name="author" content="Tarek Raafat"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="apple-touch-icon" sizes="57x57" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="https://tarekraafat.github.io/autoComplete.js/img/icons/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="https://tarekraafat.github.io/autoComplete.js/img/icons/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="https://tarekraafat.github.io/autoComplete.js/img/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="https://tarekraafat.github.io/autoComplete.js/img/icons/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="https://tarekraafat.github.io/autoComplete.js/img/icons/favicon-16x16.png"> | ||
<link rel="manifest" href="https://tarekraafat.github.io/autoComplete.js//manifest.json"> | ||
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="https://cdn.jsdelivr.net/gh/TarekRaafat/[email protected]/dist/css/autoComplete.min.css"> | ||
<link rel="stylesheet" type="text/css" media="screen" href="./css/main.css"> | ||
<link href="https://fonts.googleapis.com/css?family=PT+Sans" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
|
@@ -72,7 +89,7 @@ <h1> | |
</h1> | ||
</header> | ||
<div class="body" align="center"> | ||
<input id="autoComplete" type="text" placeholder="Loading..." tabindex="0" /> | ||
<input id="autoComplete" type="text" placeholder="Loading..." tabindex="0"> | ||
<div class="mode"> | ||
<h4>mode</h4> | ||
<div class="toggele"> | ||
|