One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <form id="contact" name="contact" method="post"> | |
| <fieldset> | |
| <label for="name" id="name">Name<span class="required">*</span></label> | |
| <input type="text" name="name" id="name" size="30" value="" required/> | |
| <label for="email" id="email">Email<span class="required">*</span></label> | |
| <input type="text" name="email" id="email" size="30" value="" required/> | |
| <label for="phone" id="phone">Phone</label> | |
| <input type="text" name="phone" id="phone" size="30" value="" /> |
| .nav-tab { | |
| ... | |
| // instead of putting it on | |
| border-right: 1px solid #424242; | |
| &:last-child { | |
| border-right: 0; // and then taking it off | |
| } | |
| // use CSS not() to only apply to the elements you want | |
| &:not(:last-child) { | |
| border-right: 1px solid #424242; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| .date{ | |
| background: #8c8c8c; | |
| padding: 5px; | |
| margin-top: 10px; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| .date{ | |
| background: #8c8c8c; | |
| padding: 5px; | |
| margin-top: 10px; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <link href="style.css" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <p>Today Is :<br><span class="date"></span></p> | |
| <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> |
| // SVG Support | |
| function cc_mime_types($mimes) { | |
| $mimes['svg'] = 'image/svg+xml'; | |
| return $mimes; | |
| } | |
| add_filter('upload_mimes', 'cc_mime_types'); |
| @font-face { | |
| font-family: 'GothamRounded-Bold'; | |
| src: url('mountnow.com/wp-content/themes/centric-pro/fonts/GothamRounded-Bold.eot?#iefix') format('embedded-opentype'), url('http://mountnow.com/wp-content/themes/centric-pro/fonts/GothamRounded-Bold.otf') format('opentype'), | |
| url('http://mountnow.com/wp-content/themes/centric-pro/fonts/GothamRounded-Bold.woff') format('woff'), url('http://mountnow.com/wp-content/themes/centric-pro/fonts/GothamRounded-Bold.ttf') format('truetype'), url('http://mountnow.com/wp-content/themes/centric-pro/fonts/GothamRounded-Bold.svg#GothamRounded-Bold') format('svg'); | |
| font-weight: normal; | |
| font-style:normal; | |
| } |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Title</title> | |
| </head> | |
| <body> | |
| <a style="background:#019CDE;color:#ffffff;padding:10px 25px;text-decoration:none;border-radius:4px" href="" >Pay with PayPal</a> | |
| </body> | |
| </html> |