PHP Classes

File: home.html

Recommend this page to a friend!
  Classes of adriano ghezzi   PHP Yandex Translate API Wrapper   home.html   Download  
File: home.html
Role: Auxiliary data
Content type: text/plain
Description: home example
Class: PHP Yandex Translate API Wrapper
Translate text between languages using Yandex API
Author: By
Last change:
Date: 7 years ago
Size: 3,070 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>package api-yandex</title> <!-- Bootstrap --> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="jumbotron"> <h1>API-YANDEX WRAPPER PACKAGE</h1> <p class="lead">This simple package bring to you the power of YANDEX translator sservice</p> <p class=" text-warning"> <strong> remember to register your free key <a href="https://translate.yandex.com/developers/keys" target="_blank">here</a> </strong> </p> <a href="http://translate.yandex.com/">Powered by Yandex.Translate</a> </div> <div class="row"> <div class="col-lg-4"> <h2>list languages</h2> <p>get the list of supported languages and types of translations</p> <p><a class="btn btn-primary" href="/examples/languages.php" role="button">View details &raquo;</a></p> </div> <div class="col-lg-4"> <h2>Translation</h2> <p>you can translate a single word,paragraph or entire text</p> <p><a class="btn btn-primary" href="/examples/trans.php" role="button">View details &raquo;</a></p> </div> <div class="col-lg-4"> <h2>Detect language</h2> <p>get the language of a word or text</p> <p><a class="btn btn-primary" href="/examples/detect.html" role="button">View details &raquo;</a></p> </div> </div> </div> <!-- /container --> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"></script> </body>