流星悟语 发表于 2015-8-12 11:41:20

Bootstrap引导屏幕界面代码

Bootsrtap 一个简单的例子。
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <meta name="description" content="Bootstrap example for Tizen"/>
   
    <title>Bootstrap example for Tizen</title>
   
<link rel="stylesheet" href="css/bootstrap.min.css">

<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
        <div class="jumbotron">
          <h1>Tizen App header</h1>
          <p>This header is made with Bootstrap for a Tizen application. </p>
        </div>
        <div class="container">
          <p>Putting the jumbotron inside the Bootstrap container div element will result with the jumbotron being padded</p>
        </div>
</div>

<script>
</script>

</body>
</html>
页: [1]
查看完整版本: Bootstrap引导屏幕界面代码