Created
September 17, 2018 09:26
-
-
Save yoonhoGo/bcd7731762d650f27b014943b83ea61e to your computer and use it in GitHub Desktop.
Node.js 서버리스 프레임웍을 사용하여 싱글페이지 포트폴리오 제작하기 6-1
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 class="has-navbar-fixed-top"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Hello AUSG!</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css"> | |
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script> | |
</head> | |
<body> | |
<nav class="navbar is-black is-fixed-top" role="navigation" aria-label="main navigation"> | |
<div class="navbar-brand"> | |
<a class="navbar-item" href="#main"> | |
<img src="/static/images/AUSG_Branding-07.png" alt="AUSG: AWSKRUG University Student Group!"> | |
AUSG | |
</a> | |
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false"> | |
<span aria-hidden="true"></span> | |
<span aria-hidden="true"></span> | |
<span aria-hidden="true"></span> | |
</a> | |
</div> | |
<div class="navbar-menu"> | |
<div class="navbar-start"> | |
<!-- navbar items --> | |
<a class="navbar-item" href="#main"> | |
Home | |
</a> | |
<a class="navbar-item" href="#about"> | |
About | |
</a> | |
</div> | |
<div class="navbar-end"> | |
<!-- navbar items --> | |
<a class="navbar-item has-text-warning" href="http://www.awskr.org/"> | |
<span class="icon"> | |
<i class="fas fa-home"></i> | |
</span> | |
</a> | |
<a class="navbar-item has-text-white" href="https://github.com/AUSG"> | |
<span class="icon"> | |
<i class="fab fa-github"></i> | |
</span> | |
</a> | |
</div> | |
</div> | |
</nav> | |
<section class="hero is-fullheight is-warning" id="main"> | |
<div class="hero-body"> | |
<div class="container"> | |
<h1 class="title"> | |
Hello AUSG! | |
</h1> | |
<h2 class="subtitle"> | |
My first website with <strong>Bulma</strong>! | |
</h2> | |
</div> | |
</div> | |
</section> | |
<section class="hero is-fullheight is-dark" id="about"> | |
<div class="hero-body"> | |
<div class="container"> | |
<h1 class="title"> | |
About | |
</h1> | |
<h2 class="subtitle"> | |
안녕하세요. 저는 이번 발표를 맡은 고윤호라고 합니다.<br /> | |
AUSG 세미나에 오신걸 환영합니다. 부디 오신 기대만큼 가져가시는 시간 되시기 바랍니다. | |
</h2> | |
</div> | |
</div> | |
</section> | |
<footer class="footer"> | |
<div class="content has-text-centered"> | |
<p> | |
AUSG is Awesome Ultra Special Group. | |
</p> | |
</div> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment