GetXamarin.xambe
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 develop<br /> iOS and 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的更多相关文章
随机推荐
- git 免密码配置
1.cd ~/ 2.touch .git-credentials (注意文件名前面有个 ”点”) 3.打开刚刚创建的文件,写入 https://username:password@github. ...
- python每天定时发送短信脚本
最近业务上需要每天解析txt文本或者excel文件,读取内容发送短信,发送的时间段可控,用python实现 安装pip依赖 pip install -r requirement.txt xlrd Py ...
- Python开发基础-Day32 进程间通信、进程池、协程
进程间通信 进程彼此之间互相隔离,要实现进程间通信(IPC),multiprocessing模块支持两种形式:队列和管道,这两种方式都是使用消息传递的. 进程队列queue 不同于线程queue,进程 ...
- Hibernate 单项一对多的关联映射
在上一篇中我们简单介绍了多对一的关联映射,本文介绍hibernate中一对多的关联映射. 1.设计表结构 虽然关联关系由多对一变为一对多,但是我们表结构不会发生改变,只是指向变了. 2.创建stude ...
- 【BZOJ 3482】 3482: [COCI2013]hiperprostor (dij+凸包)
3482: [COCI2013]hiperprostor Time Limit: 20 Sec Memory Limit: 256 MBSubmit: 277 Solved: 81 Descrip ...
- logN判点是否在凸多边形内 HRBUSTOJ1429
就是利用叉积的性质,如果向量A1到向量A2是顺时针则叉积为负反之为正. 然后我们可以二分的判断找到一个点恰被两条射线夹在一起. 然后我们再判断是否l,r这两个点所连直线与点的关系. 具体资料可以参照这 ...
- [BZOJ2427][HAOI2010]软件安装(Tarjan+DP)
2427: [HAOI2010]软件安装 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 1987 Solved: 791[Submit][Statu ...
- HDU 4183
给出一个有向图,以及src和dst.判断是否存在从src到dst的两条路径,使得除了src和dst外,没有其它点同时属于两条路径. 给每个点一个为1的点容量(src和dst为2),边的容量也是1,然后 ...
- poj2117 Electricity
试题描述 求一个图删除一个点之后,联通块最多有多少. 输入 多组数据.第一行两个整数 P,C 表示点数和边数.接下来 C 行每行两个整数 p1,p2,表示 p1 与 p2 有边连接,保证无重边.读 ...
- uoj 67 新年的毒瘤 tarjan求割点
#67. 新年的毒瘤 Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://uoj.ac/problem/67 Description 辞旧迎新之际 ...