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
<!doctype html> | |
<html> | |
<body> | |
<div> | |
<a href="http://test2.homedecorators.com/custom-art/#/search/artist=Sara%20Abbott"> | |
<img src="http://gallerydirect.com/assets/images/artists_images/sara-abbott.jpg" style="width: 100px"> | |
<span style="display: block">Sara Abbott</span> | |
</a> | |
</div><br><div> | |
<a href="http://test2.homedecorators.com/custom-art/#/search/artist=Arthur%20Albin"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="../styles/nep_widget.css" > | |
</head> | |
<body> | |
<div id="nep_widget" class="container"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<!--[if lt IE 9]> | |
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
</head> | |
<body> |
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
Name | Description | Due | |
---|---|---|---|
A task | The desscrption of the task | dd/mm/yy | |
More tasks | More descriptions of tasks | dd/mm/yy |
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
# Exercise 2 | |
def calc_1(operator, num1, num2) | |
if operator == "*" | |
return num1.to_f * num2.to_f | |
elsif operator == "/" | |
return num1.to_f / num2.to_f | |
elsif operator == "+" | |
return num1.to_f + num2.to_f | |
elsif operator == "-" |