You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
990 B
34 lines
990 B
<?php |
|
/** |
|
* @fileName index.php |
|
* @author Amir <amirsanni@gmail.com> |
|
* @date 22-Dec-2016 |
|
*/ |
|
?> |
|
|
|
<!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"> |
|
|
|
<title>Chat App</title> |
|
|
|
<!-- Favicon --> |
|
<link rel="shortcut icon" href="img/favicon.ico"> |
|
<!-- favicon ends --> |
|
|
|
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.3/html5shiv.js"></script> |
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> |
|
<![endif]--> |
|
</head> |
|
|
|
|
|
<body> |
|
<input type="button" id='createRoom'> |
|
</body> |
|
</html>
|