Created
February 20, 2016 11:45
-
-
Save minhoryang/a292b55a5e78b2c49957 to your computer and use it in GitHub Desktop.
UI Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<!-- Required meta tags always come first --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous"> | |
</head> | |
<body> | |
<header> | |
<nav class="navbar navbar-light bg-faded"> | |
<a class="navbar-brand" href="#">릴리즈 업적관리 사비스</a> | |
<ul class="nav navbar-nav"> | |
<li class="nav-item active"> | |
<a class="nav-link" href="#">양민호</a> | |
</li> | |
</ul> | |
<form class="form-inline pull-xs-right hidden-sm-down"> | |
<input class="form-control" type="text" placeholder="다른 친구"> | |
<button class="btn btn-success-outline" type="submit">궁금해</button> | |
</form> | |
</nav> | |
</header> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-xs-6 col-md-4"> | |
spacing needed | |
<ul class="nav nav-pills nav-stacked"> | |
<li class="nav-item"> | |
<a class="nav-link active" href="#">Active</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">Link</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link" href="#">Another link</a> | |
</li> | |
<li class="nav-item"> | |
<a class="nav-link disabled" href="#">Disabled</a> | |
</li> | |
</ul> | |
</div> | |
<div class="col-xs-12 col-sm-6 col-md-8"> | |
content lives here | |
</div> | |
</div> | |
</div> | |
<!-- jQuery first, then Bootstrap JS. --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> | |
<script src="http://github.hubspot.com/tether/dist/js/tether.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js" integrity=" | |
sha384-vZ2WRJMwsjRMW/8U7i6PWi6AlO1L79snBrmgiDpgIWJ82z8eA5lenwvxbMV1PAh7" crossorigin="anonymous"></script | |
> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment