-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
alexsophiekim
authored and
alexsophiekim
committed
Jan 22, 2024
1 parent
c3904fe
commit 1a9b5d2
Showing
7 changed files
with
78 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="description" content="UX/UI designer Sophie Kim's Portfolio"> | ||
<meta name="keywords" content="HTML,CSS,SCSS,JavaScript,UI,UX,designer,developer"> | ||
<meta name="author" content="Sophie Kim"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Sophie Kim's Portfolio</title> | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600,800|Share:400,700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"> | ||
<link rel="stylesheet" href="plugIns/themify-icons/themify-icons.css"> | ||
<link rel="stylesheet" href="css/style.css"> | ||
<title>Mt.Ruapehu</title> | ||
<style> | ||
.badgeGroup { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
.badgeItem { | ||
list-style: none; | ||
border:1px solid grey; | ||
border-radius: 4px; | ||
margin-right: 0.5em; | ||
padding: 2px 10px; | ||
font-size: 0.8em; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<a style="text-decoration:none;" href="index.html"> | ||
<img class="logo" src="img/logoDark.png" alt=""> | ||
<img class="mLogo" src="img/logoLight.png" alt=""> </a> | ||
<nav class="nav"> | ||
<div class="toggle"> | ||
<i class="ti-menu"></i> | ||
<i class="ti-close"></i> | ||
</div> | ||
<ul> | ||
<li><a href="index.html">HOME</a> </li> | ||
<li><a class="about" href="./index.html#about">ABOUT</a></li> | ||
<li><a href="./index.html#works">WORKS</a></li> | ||
<li><a class="skills" href="./index.html#skills">SKILLS</a></li> | ||
<li><a href="./index.html#contact">CONTACT</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<div class="workPage"> | ||
<h1 class="worksTitle">UI/UX - Accomodation Booking System</h1> | ||
<nav class="badgeGroup"> | ||
<li class="badgeItem">UX Research</li> | ||
<li class="badgeItem">Wireframe</li> | ||
<li class="badgeItem">Responsive Design</li> | ||
</nav> | ||
<img src="img/UXRuapehu.png"/> | ||
</div> | ||
</body> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | ||
<script src="js/script.js" charset="utf-8"></script> | ||
</html> |
This file contains 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