This file contains hidden or 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Built By RoyalityFree's Blog--> | |
<meta charset="utf-8"> | |
<title>Text To Speech | RoyalityFree Codes</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | |
<link rel="stylesheet" href="assets/style.css"> |
This file contains hidden or 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
<div class="container-fluid"> | |
<div class="card py-0"> | |
<div class="d-flex justify-content-between align-items-center pt-15"> | |
<h5 class="m-0">Hosting Accounts</h5> | |
<a href="<?php echo $AreaInfo['area_url'];?>newaccount.php" class="btn text-white btn-success btn-sm">New Account</a> | |
</div> | |
<hr> | |
<div class="table-responsive"> | |
<table class="table table-stripped"> | |
<thead> |
This file contains hidden or 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
/* | |
------------------------------------------------------------------------------- | |
Halfmoon CSS | |
Version: 1.1.1 | |
https://www.gethalfmoon.com | |
Copyright, Halfmoon UI | |
Licensed under MIT (https://www.gethalfmoon.com/license) | |
------------------------------------------------------------------------------- | |
The above notice must be included in its entirety when this file is used. | |
*/ |
This file contains hidden or 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
/*Poppins Font*/ | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300&display=swap'); | |
/* Start of WpXube Follow Buttons */ | |
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"); | |
.wpxube-com { | |
user-select: none; | |
font-family: 'Poppins', sans-serif; | |
font-weight: 300; | |
text-align: center; | |
display: table; |
This file contains hidden or 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
// ** MySQL settings - You can get this info from your web host ** // | |
/** The name of the database for WordPress */ | |
define( 'DB_NAME', 'database_name_here' ); | |
/** MySQL database username */ | |
define( 'DB_USER', 'username_here' ); | |
/** MySQL database password */ | |
define( 'DB_PASSWORD', 'password_here' ); | |
/** MySQL hostname */ | |
define( 'DB_HOST', 'localhost' ); |
This file contains hidden or 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
<script> | |
var state = history.state || {}; | |
var reloadCount = state.reloadCount || 0; | |
if (performance.navigation.type === 1) { // Reload | |
state.reloadCount = ++reloadCount; | |
history.replaceState(state, null, document.URL); | |
} else if (reloadCount) { | |
delete state.reloadCount; | |
reloadCount = 0; | |
history.replaceState(state, null, document.URL); |
This file contains hidden or 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
<script type='text/javascript'> | |
//<![CDATA[ | |
var uri = window.location.toString(); | |
if (uri.indexOf("%3D","%3D") > 0) { | |
var clean_uri = uri.substring(0, uri.indexOf("%3D")); | |
window.history.replaceState({}, document.title, clean_uri); | |
} | |
var uri = window.location.toString(); | |
if (uri.indexOf("%3D%3D","%3D%3D") > 0) { | |
var clean_uri = uri.substring(0, uri.indexOf("%3D%3D")); |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<link rel="stylesheet" href="style.css"> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Website Name</title> | |
<!-- Google font --> |
This file contains hidden or 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
<!-- This template was made possible by Tips Tech (https://geektechtips.xyz/) --> | |
<div id="notfound"> | |
<div class="notfound"> | |
<div class="notfound-404"> | |
<h1>Oops!</h1> | |
<h2>404 - NOTHING EXISTS</h2> | |
</div> | |
<a href="#" target="_blank">HOME</a> | |
</div> | |
</div> |
This file contains hidden or 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
*{ | |
background: #DFCFBE; | |
} | |
/*Add the following code*/ | |
.logo{ | |
display: block; | |
margin-left: auto; | |
margin-right: auto; |