Hỗ trợ Forumotion
Bạn có muốn phản ứng với tin nhắn này? Vui lòng đăng ký diễn đàn trong một vài cú nhấp chuột hoặc đăng nhập để tiếp tục.

You are not connected. Please login or register

Xem chủ đề cũ hơn Xem chủ đề mới hơn Go down  Thông điệp [Trang 1 trong tổng số 1 trang]

ChimSeDiMua
  • Member

ChimSeDiMua

Member


ChimSeDiMua

ChimSeDiMua
loading...

Code:
<!DOCTYPE html>

<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>[You must be registered and logged in to see this link.] - Cộng Đồng IT Việt | ZoneIT | Diễn đàn chia sẽ Free</title>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="Creative CSS3 Animation Menus">
        <meta name="keywords" content="ZoneIT, Skin VBB, Skin VBb3, Skin VBB, Mod VBB3, Mod VBB4, web design, Tut Rip Skin, Rip, Ripskin">
        <meta name="author" content="Codrops">
        <link rel="shortcut icon" href="http://zoneit.tk/favicon.ico">
        <link rel="stylesheet" type="text/css" href="http://zoneit.tk/index_files/demo.css">
        <link rel="stylesheet" type="text/css" href="http://zoneit.tk/index_files/style1.css">
        <link href="http://zoneit.tk/index_files/css" rel="stylesheet" type="text/css">
 
    <style id="wrc-middle-css" type="text/css">.wrc_whole_window{  display: none;  position: fixed;    z-index: 2147483647;  background-color: rgba(40, 40, 40, 0.9);  word-spacing: normal;  margin: 0px;  padding: 0px;  border: 0px;  left: 0px;  top: 0px;  width: 100%;  height: 100%;  line-height: normal;  letter-spacing: normal;}.wrc_middle_main {  font-family: Segoe UI, Arial Unicode MS, Arial, Sans-Serif;  font-size: 14px;  width: 600px;  height: auto;  margin: 0px auto;  margin-top: 15%;    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/background-body.jpg) repeat-x left top;  background-color: rgb(39, 53, 62);}.wrc_middle_logo {    background: url(chrome-extension://icmlaeflemplmjndnaapfdbbnpncnbda/skin/images/logo.jpg) no-repeat left bottom;    width: 140px;    height: 42px;    color: orange;    display: table-cell;    text-align: right;    vertical-align: middle;}.wrc_icon_warning {  margin: 20px 10px 20px 15px;  float: left;  background-color: transparent;}.wrc_middle_title {    color: #b6bec7;  height: auto;    margin: 0px auto;  font-size: 2.2em;  white-space: nowrap;  text-align: center;}.wrc_middle_hline {    height: 2px;  width: 100%;    display: block;}.wrc_middle_description {  text-align: center;  margin: 15px;  font-size: 1.4em;  padding: 20px;  height: auto;  color: white;  min-height: 3.5em;}.wrc_middle_actions_main_div {  margin-bottom: 15px;  text-align: center;}.wrc_middle_actions_blue_button {  -moz-appearance: none;  border-radius: 7px;  -moz-border-radius: 7px/7px;  border-radius: 7px/7px;  background-color: rgb(0, 173, 223) !important;  display: inline-block;  width: auto;  cursor: Pointer;  border: 2px solid #00dddd;}.wrc_middle_actions_blue_button:hover {  background-color: rgb(0, 159, 212) !important;}.wrc_middle_actions_blue_button:active {  background-color: rgb(0, 146, 200) !important;  border: 2px solid #00aaaa;}.wrc_middle_actions_blue_button div {  display: inline-block;  width: auto;  cursor: Pointer;  margin: 3px 10px 3px 10px;  color: white;  font-size: 1.2em;  font-weight: bold;}.wrc_middle_action_low {  font-size: 0.9em;  white-space: nowrap;  cursor: Pointer;  color: grey !important;  margin: 10px 10px 0px 10px;  text-decoration: none;}.wrc_middle_action_low:hover {  color: #aa4400 !important;}.wrc_middle_actions_rest_div {  padding-top: 5px;  white-space: nowrap;  text-align: center;}.wrc_middle_action {  white-space: nowrap;  cursor: Pointer;  color: red !important;  font-size: 1.2em;  margin: 10px 10px 0px 10px;  text-decoration: none;}.wrc_middle_action:hover {  color: #aa4400 !important;}</style><script id="wrc-script-middle_window" type="text/javascript" language="JavaScript">var g_inputsCnt = 0;var g_InputThis = new Array(null, null, null, null);var g_alerted = false;/* we test the input if it includes 4 digits  (input is a part of 4 inputs for filling the credit-card number)*/function is4DigitsCardNumber(val){  var regExp = new RegExp('[0-9]{4}');  return (val.length == 4 && val.search(regExp) == 0);}/* testing the whole credit-card number 19 digits devided by three '-' symbols or  exactly 16 digits without any dividers*/function isCreditCardNumber(val){  if(val.length == 19)  {      var regExp = new RegExp('[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{4}');      return (val.search(regExp) == 0);  }  else if(val.length == 16)  {      var regExp = new RegExp('[0-9]{4}[0-9]{4}[0-9]{4}[0-9]{4}');      return (val.search(regExp) == 0);  }  return false;}function CheckInputOnCreditNumber(self){  if(g_alerted)      return false;  var value = self.value;  if(self.type == 'text')  {      if(is4DigitsCardNumber(value))      {        var cont = true;        for(i = 0; i < g_inputsCnt; i++)            if(g_InputThis[i] == self)              cont = false;        if(cont && g_inputsCnt < 4)        {            g_InputThis[g_inputsCnt] = self;            g_inputsCnt++;        }      }      g_alerted = (g_inputsCnt == 4);      if(g_alerted)        g_inputsCnt = 0;      else        g_alerted = isCreditCardNumber(value);  }  return g_alerted;}function CheckInputOnPassword(self){  if(g_alerted)      return false;  var value = self.value;  if(self.type == 'password')  {      g_alerted = (value.length > 0);  }  return g_alerted;}function onInputBlur(self, bRatingOk, bFishingSite){  var bCreditNumber = CheckInputOnCreditNumber(self);  var bPassword = CheckInputOnPassword(self);  if((!bRatingOk || bFishingSite == 1) && (bCreditNumber || bPassword) )  {      var warnDiv = document.getElementById("wrcinputdiv");      if(warnDiv)      {        /* show the warning div in the middle of the screen */        warnDiv.style.left = "0px";        warnDiv.style.top = "0px";        warnDiv.style.width = "100%";        warnDiv.style.height = "100%";        document.getElementById("wrc_warn_fs").style.display = 'none';        document.getElementById("wrc_warn_cn").style.display = 'none';        if(bFishingSite)            document.getElementById("wrc_warn_fs").style.display = 'block';        else            document.getElementById("wrc_warn_cn").style.display = 'block';        warnDiv.style.display = 'block';      }  }}</script></head>
    <body>
        <div class="container">
            <div class="header">
                <span class="right">
                              </span>
                <div class="clr"></div>
            </div>
           
<h1>[You must be registered and logged in to see this link.] <span>Cảm ơn các bạn đã ghé thăm diễn đàn ZoneIT</span></h1>
 
          <div class="content">
               
                <ul class="ca-menu">
                    <li>
                 
    <a href="/forum">
                         
  <span class="ca-icon"></span>
                   
      <div class="ca-content">
                           
  <h2 class="ca-main">VÀO DIỄN ĐÀN</h2>
                             
  <font color="red">Cộng đồng IT Việt      </font>              </div>
                        </a>
                    </li>
            <li>
                        <a href="/mp3">
                            <span class="ca-icon"></span>
                   
        <div class="ca-content">
                                <h2 class="ca-main">NGHE NHẠC</h2>
                   
        <font color="red">    Tận hưởng cuộc sống
    </font>                        </div>
                        </a>
                    </li>
          <li>
                        <a href="/tivi">
                            <span class="ca-icon"></span>
                   
        <div class="ca-content">
                                <h2 class="ca-main">XEM TIVI</h2>
                   
        <font color="red">    Tivi trực tuyến 24h
    </font>                        </div>
                        </a>
                    </li>
               
 
                </ul>
            </div><!-- content -->
        </div>




        <script type="text/javascript" src="http://zoneit.tk/index_files/jquery.min.js"></script>
 
  <script>
        var ADPACKSSTYLE = "lightVertical";
      </script>
     
   
</body></html>

Demo: [You must be registered and logged in to see this link.]

Trả lời nhanh


  • 4120dsdsadsa
    4120dsdsadsa

    Bài gửi 16/3/2014, 5:00 pm 4120dsdsadsa

    cho hỏi chèn vào đâu ?

    Trả lời nhanh

Xem chủ đề cũ hơn Xem chủ đề mới hơn Về Đầu Trang Thông điệp [Trang 1 trong tổng số 1 trang]

Permissions in this forum:
Bạn không có quyền trả lời bài viết