Angular: Empty Fiddle

http://angularjs.org/

by Dor Cohen

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<!DOCTYPE html>
<html>
<head>
	<title>Dorothy's Closet - Home</title>
	<link type="text/css" rel="stylesheet" href="Design.css">
</head>
<body>
	<div class="Nav_Bar">
		<ul>
			<li>Home</li>
			<li>About</li>
			<li>Contact</li>
		</ul>
	</div>
</body>
</html>

CSS

body{

}

.Nav_Bar{
	background-color: pink;
	display: flex;
}

.Nav_Bar ul
{
	list-style-type: none;
	justify-content: flex-end;
	flex-direction: row;
	text-decoration-color: White;
  /*flex-direction: row | row-reverse | column | column-reverse;*/
}