GetXamarin.xambe

<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset='utf-8'>
<meta http-equiv="Content-Language" content="en">
<title>Download Xamarin</title>
<style type="text/css">
html {
background: #fff url(bg.png) no-repeat bottom right;
width: %;
height: %;
overflow: hidden;
}
body {
font-family: "Segoe UI", sans-serif;
margin: 70px 80px;
}
#copy {
width: 600px;
padding-bottom: 40px;
}
#copy h1 {
margin: ;
font-size: 45px;
font-weight: ;
line-height: normal;
color: #3498DB;
}
#copy p.feature {
margin: 15px ;
font-size: 18px;
line-height: 1.7;
color: #7F8C8D;
} #actions, #actions tr, #actions td {
margin: ;
border: ;
padding: ;
}
#actions {
white-space: nowrap;
border-collapse: collapse;
}
#actions td {
padding: 18px ;
}
#actions a {
color: #3498DB;
}
#actions a.button {
font-size: 17px;
background: #3498DB;
color: #fff;
text-decoration: none;
padding: 10px 14px;
font-weight: ; display:-moz-inline-stack;
display:inline-block;
zoom:;
*display:inline;
}
#actions a.button:hover {
background: #4CA6E3;
} #actions a.link {
display:-moz-inline-stack;
display:inline-block;
zoom:;
*display:inline;
}
</style>
</head>
<body>
<div id="copy">
<h1>Install Xamarin to&nbsp;develop<br /> iOS&nbsp;and&nbsp;Android apps in C#.</h1>
<p class="feature">Xamarin allows you to write your iOS and Android apps entirely in C#, sharing the same code between these platforms and your existing .NET projects.</p>
</div>
<table id="actions">
<tr>
<td>
<a class="button" href="http://xamarin.com/download?utm_source=visualstudio&utm_medium=referral&utm_content=download&utm_campaign=installer">Download Xamarin</a>
</td>
<td>
<a class="link" href="http://xamarin.com/platform?utm_source=visualstudio&utm_medium=referral&utm_content=platform&utm_campaign=installer">Learn more about Xamarin</a>
</td>
</table>
</body>
</html>

GetXamarin.xambe的更多相关文章

随机推荐

  1. openstack首页默认跳转

    在/var/www/html新建index.html <html> <head> <meta http-equiv="Content-Language" ...

  2. Highcharts实现走势图

    Highcharts 是一个用纯JavaScript编写的一个图表库, 能够很简单便捷的在web网站或是web应用程序添加有交互性的图表,并且免费提供给个人学习.个人网站和非商业用途使用.HighCh ...

  3. luoguP3317 [SDOI2014]重建 变元矩阵树定理 + 概率

    首先,我们需要求的是 $$\sum\limits_{Tree} \prod\limits_{E \in Tree} E(u, v) \prod\limits_{E \notin Tree} (1 - ...

  4. 【容斥原理】【推导】【树状数组】Gym - 101485G - Guessing Camels

    题意:给你三个1~n的排列a,b,c,问你在 (i,j)(1<=i<=n,1<=j<=n,i≠j),有多少个有序实数对(i,j)满足在三个排列中,i都在j的前面. 暴力求的话是 ...

  5. 【tarjan+拓扑】BZOJ3887-[Usaco2015 Jan]Grass Cownoisseur

    [题目大意] 给一个有向图,然后选一条路径起点终点都为1的路径出来,有一次机会可以沿某条边逆方向走,问最多有多少个点可以被经过?(一个点在路径中无论出现多少正整数次对答案的贡献均为1) [思路] 首先 ...

  6. CF1009G Allowed Letters

    link 题意: 给你一个长为n的串,字符集'a'~'f'.你可以重排这个串,满足指定m个位置上只能放特定的字符,m个位置以及字符集会给出.求字典序最小的串? $n,m\leq 10^5.$ 题解: ...

  7. DML、DDL、DCL是什么?

    一.DML DML(data manipulation language)数据操纵语言: 我们经常会用到的 INSERT.DELETE.UPDATE.SELECT语句. 主要用来对数据库的数据进行一些 ...

  8. 判断一个js对象是不是数组

    //今天突然想到一个问题,如何判断一个对象是不是数组 var arr = [0, 1, 2]; console.log(arr) //object, 显然不行 //查阅了很多资料,发现几个挺不错的方法 ...

  9. 【原】Eclipse部署Maven web项目到tomcat服务器时,没有将lib下的jar复制过去的解决办法

    我们在做web开发是,经常都要在eclipse中搭建web服务器,并将开发中的web项目部署到web服务器进行调试,在此,我选择的是tomcat服务器.之前部署web项目到tomcat进行启动调试都很 ...

  10. SpringMVC访问静态页面

    Spring MVC显示静态页面 在前面搭建spring MVC环境时,我们设置了spring-mvc配置,通过tomcat来访问了index.jsp 页面,但是当我将页面换成.thml的静态面之后就 ...