meta

Changing metas for each page in PHP Website

耗尽温柔 提交于 2020-04-11 15:32:59
问题 Take a look at this: How to make webpages with the same design. I used it to make a website called X Phoenix. When I type X Phoenix on google, it doesn't come on top, although i've put it on google webmasters and it's been 4 months. It doesn't come anywhere I can see on Google Search. On this pdf, it's written that use different keywords, titles, and descriptions for all pages. But in my website, i've used the method in which i put the head and a few other things from body in a file called

Changing metas for each page in PHP Website

妖精的绣舞 提交于 2020-04-11 15:26:35
问题 Take a look at this: How to make webpages with the same design. I used it to make a website called X Phoenix. When I type X Phoenix on google, it doesn't come on top, although i've put it on google webmasters and it's been 4 months. It doesn't come anywhere I can see on Google Search. On this pdf, it's written that use different keywords, titles, and descriptions for all pages. But in my website, i've used the method in which i put the head and a few other things from body in a file called

Changing metas for each page in PHP Website

人盡茶涼 提交于 2020-04-11 15:25:04
问题 Take a look at this: How to make webpages with the same design. I used it to make a website called X Phoenix. When I type X Phoenix on google, it doesn't come on top, although i've put it on google webmasters and it's been 4 months. It doesn't come anywhere I can see on Google Search. On this pdf, it's written that use different keywords, titles, and descriptions for all pages. But in my website, i've used the method in which i put the head and a few other things from body in a file called

回顾JS第一章如何在HTML文件中添加JavaScript代码

随声附和 提交于 2020-04-08 02:13:11
JavaScript入门篇—第1章 请做好准备 本章节主要讲解如何在HTML文件中添加JavaScript代码,掌握必备的基础语法,为以后来章学习打下基础。 1-1 为什么学习JavaScript 1-2 新朋友你在哪里(如何插入JS) 1-3 我也可以独立(引用JS外部文件) 1-4 找到你的位置(JS在页面中的位置) 1-5 JavaScript-认识语句和符号 1-6 JavaScript-注释很重要 1-7 JavaScript-什么是变量 1-8 JavaScript-判断语句(if...else) 1-9 JavaScript-什么是函数 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>为什么学习JavaScript</title> 6 </head> 7 <body> 8 <ul> 9 <li id="ceshi1">所有主流浏览器都支持JavaScript。</li> 10 <li id="ceshi2">目前,全世界大部分网页都使用JavaScript。</li> 11 <li>它可以让网页呈现各种动态效果。</li> 12 <li>做为一个Web开发师,如果你想提供漂亮的网页、令用户满意的上网体验,JavaScript是必不可少的工具。</li> 13 </ul> 14

AngularJS 使用 uppercase 过滤器的表格

跟風遠走 提交于 2020-04-08 02:03:23
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="X-UA-Compatible"content="IE=edge" /> <meta name="viewport"content="width=device-width,initial-scale=1" /> <title></title> <meta charset="utf-8" /> <link rel="stylesheet"href="bootstrap-3.3.6-dist/css/bootstrap.min.css" /> <style> table td { border:solid 1px grey; border-collapse:collapse; padding:10px; } table tr:nth-child(odd) { background-color:#f1f1f1; } table tr:nth-child(even) { background-color:#ffffff; } </style> </head> <body> <div class="container"style="padding:50px">

AngularJS 表格(带有CSS样式)

ぐ巨炮叔叔 提交于 2020-04-08 02:03:07
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta http-equiv="X-UA-Compatible"content="IE=edge" /> <meta name="viewport"content="width=device-width,initial-scale=1" /> <title></title> <meta charset="utf-8" /> <link rel="stylesheet"href="bootstrap-3.3.6-dist/css/bootstrap.min.css" /> <style> table td { border:solid 1px grey; border-collapse:collapse; padding:10px; } table tr:nth-child(odd) { background-color:#f1f1f1; } table tr:nth-child(even) { background-color:#ffffff; } </style> </head> <body> <div class="container"style="padding:50px">

可输入的下拉框

十年热恋 提交于 2020-04-07 12:15:09
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>可输入的下拉框</title> <meta name="description" content=""> <meta name="keywords" content=""> <link href="" rel="stylesheet"> </head> <body> <style type="text/css"> input:focus{ /*去掉focus效果*/ outline: none; } </style> <div style="position:relative"> <div style="display:inline"> <select name="sel" onchange="this.parentNode.nextSibling.value=this.value" style="width:200px;height:30px;"> <option value="第一选择">第一选择</option> <option value="第二选择">第二选择</option> </select> </div><input

【转】Python 之Web编程

被刻印的时光 ゝ 提交于 2020-04-07 10:45:39
转: https://www.cnblogs.com/chenyanbin/p/10454503.html 一 、HTML是什么? #   htyper text markup language 即超文本标记语言   超文本:就是指页面内可以包含图片、链接、甚至音乐、程序等非文字元素   标记语言:标记(标签)构成的语言   静态网页:静态的资源,如xxx.html   动态网页:html代码是由某种开发语言根据用户请求动态生成   html文档树结构图: 二 、 什么是标签? #   - 由一对尖括号包裹的单词构成,如<html> 所有标签中的单词不可能从数据开头   - 标签不区分大小写<html>和<HTML>,建议使用小写   - 标签分两部分:开始标签<a>和结束标签</a>,两个标签之间的部分,叫标签体   - 有些标签功能比较简单,使用一个标签即可,这种标签叫做自闭合标签,如:<br/>、<hr/>、<input/>、<img/>   - 标签可以嵌套,但不能交叉嵌套。如:<a><b></a></b> 三 、 标签的属性 #   - 通常是以键值对形式出现的,例如 name="alex"   - 属性只能出现在开始标签 或 自闭合标签中   - 属性名字全部小写,属性值必须使用双引号或单引号包裹,如:name="alex"   - 如果属性值和属性名完全一样

Prestashop中文模版制作指南

▼魔方 西西 提交于 2020-04-07 07:14:15
Prestashop Css Layout 图 : 这是PrestaShop的Css Layout,方便大家知道主要的结构: 关于设计整合 PrestaShop 的介 绍 : 网页设计师只需要掌握好比较好的HTML和CSS技术便能改变Prestashop的外观,如果想进一步的改变,甚至加些比默认模版更绚丽的效果,你需要掌握好JQuery(Javascript库)和Smarty(PHP模版语言)。 听到这或许你会觉得非常的困难,甚至强调着“我只是个设计师,不是个程序员”。不用怕,把握JQuery和Smarty这两种工具其实是比你想象中的简单的,如果不想花精力去使外观和互动性能更出色、更多变的话,当然完全可以完整的用CSS来改变模版,下面将会提到是如何去实现的过程。 在这个设计者指导手册开始前,请确认你具备着比较好的XHTML和CSS这两种技术,如果你还不会的话,可以先从这两种技术慢慢学起再来看此篇手册。 在我们跳到Prestashop模版设计前,我们先来看看Prestashop的文件结构有些什么。当你计划去着手改变一个模版,清楚地了解文件的结构是非常重要的,我们接下来还会有一篇15分钟的文章引导,让你分别对Smarty 和JQuery 有个大概的了解,如果你从没有用过PHP Frameword 或者是Javascript 库德化,我建议你还是不要跳过这两篇文章引导。 准备好了么?好的

PHP 页面编码声明方法详解(header或meta)

随声附和 提交于 2020-04-07 04:58:22
php的header来定义一个php页面为utf编码或GBK编码 php页面为utf编码 header("Content-type: text/html; charset=utf-8"); php页面为gbk编码 header("Content-type: text/html; charset=gb2312"); php页面为big5编码 header("Content-type: text/html; charset=big5"); 通常情况以上代码放在php页面的首页 用header或meta实现PHP页面编码的区别 一、页面编码 1. 使用 <META http-equiv="content-type" content="text/html; charset=xxx"> 标签设置页面编码 这 个标签的作用是声明客户端的浏览器用什么字符集编码显示该页面,xxx可以为GB2312,GBK,UTF-8(和MySQL不同,MySQL是 UTF8)等等。因此,大部分页面可以采用这种方式来告诉浏览器显示这个页面的时候采用什么编码,这样才不会造成编码错误而产生乱码。但是有的时候我们会 发现有了这句还是不行,不管xxx是哪一种,浏览器采用的始终都是一种编码,这个情况我后面会谈到。 请注意,<meta>是属于html信息的,仅仅是一个声明,它起作用表明服务器已经把HTML信息传到了浏览器。 2