# easy-invoice/2.2.0/templates/quote-templates/default.php

Easy Invoice – Invoice Generator, PDF Quotes &amp; Payments, version 2.2.0. 23 lines.

- Page: https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/templates/quote-templates/default.php
- Raw: https://pluginprobe.com/plugins/easy-invoice/2.2.0/raw/templates/quote-templates/default.php
- Modified: 2026-02-15T10:35:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/templates/quote-templates/default.php#L10-L20`.

```php
<style>
	/* Default Template - Clean and Simple Design */
	.easy-invoice-quote-container{
		max-width:794px!important;
	}


	/* Responsive Design */
	@media (max-width: 768px) {
		.template-default {
 		}
	}
	<?php
		do_action('easy_invoice_templates_quote_templates_default_styles');
	?>
</style>

<div class="template template-default" id="canvas">
 	<?php
		do_action('easy_invoice_templates_quote_templates_default', $quote);
	?>
</div>

```
