Example of homenote.js, a jQuery plugin for generating a mortgage calculator.
A Pen by Kyle Phillips on CodePen.
/* | |
C++ Program to check for balanced parentheses in an expression using stack. | |
Given an expression as string comprising of opening and closing characters | |
of parentheses - (), curly braces - {} and square brackets - [], we need to | |
check whether symbols are balanced or not. | |
*/ | |
#include<iostream> | |
#include<stack> | |
#include<string> | |
using namespace std; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sound -</title> | |
</head> | |
<body> | |
<div>Frequence: <span id="frequency"></span></div> | |
<button type="button" id="play" onclick="play()">Play</button> |
<!DOCTYPE html> | |
<html> | |
<head><title>SOUND</title></head> | |
<body> | |
<div>Frequence: <span id="frequency"></span></div> | |
<script type="text/javascript"> | |
var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); | |
var oscillatorNode = audioCtx.createOscillator(); | |
var gainNode = audioCtx.createGain(); |
<div id="content"> | |
<!-- canas --> | |
<div id="paint"></div> | |
<!-- text --> | |
<div id="wrapper"> | |
<div class="flex"> | |
<div id="controls"> |
<div class="container"> | |
<main> | |
<img src="http://www.directcommercialfunding.com/images/apartment-building-loans.jpg" alt="apartment building" /> | |
<div class="for-sale"> | |
<header> | |
<i class="fa fa-home"></i> | |
<h3><span class="blue">DESIGNYEP</span><br /> PROPERTY</h3> | |
</header> | |
<h1><span class="blue light-weight">FOR</span><br /> <strong>SALE</strong></h1> | |
<h4>OFFERED AT</h4> |
Example of homenote.js, a jQuery plugin for generating a mortgage calculator.
A Pen by Kyle Phillips on CodePen.
<div class="dm-widget"> | |
<h2>Mortgage Calculator</h2> | |
<div id="dm-form-container" class="dm-form-container"> | |
<form class="dm-form"> | |
<fieldset id="dm-amount-field"> | |
<label for="dm-amount" class="dm-form-label">Mortgage Amount: ($)</label> | |
<input class="dm-form-input" id="dm-amount" type="text" placeholder="Mortgage Amount ($)" value="300000"> | |
</fieldset> | |
<fieldset id="dm-rate-field"> | |
<label for="dm-rate" class="dm-form-label">Interest Rate: (%)</label> |
<!-- SITE HEADER --> | |
<header class="site-header"> | |
<nav class="site-nav navbar navbar-default navbar-fixed-top"> | |
<div class="container-fluid"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#site-nav" aria-expanded="false"> | |
<span class="sr-only">Menu</span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> |
Angular App developed for a real estate client, calculates your monthly mortgage payments in a USD amount. App based on the mortgage equation M = P[i(1+i)^n]/[(1+i)^n -1]. In the future variables such as insurance rates, property tax, and down payments can also be applied. Now includes down payment option.
A Pen by Peter Girnus on CodePen.