> For the complete documentation index, see [llms.txt](https://docs.peakcommerce.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.peakcommerce.com/product/rules-and-customizations/product-card-customizations/product-card-template.md).

# Product Card Template

Below is an example of a product card detailing an entry-level plan, offering a fundamental set of features tailored for individual users.

Initially, the card showcases a pertinent icon and a concise title, along with highlighting the standard feature set designed for entry-level users.

Moreover, the card underscores the inclusion of desktop access, a pivotal aspect of this particular plan.

Additionally, the card displays pricing details, encompassing the currency symbol, cost, and billing cycle.

For enhanced user engagement, the card facilitates plan selection through a clickable "SELECT" button.

In summary, this product card aims to furnish individuals with a straightforward overview of the entry-level plan's features and pricing structure, empowering them to make well-informed choices.

```html
<%@ page contentType="text/html;charset=UTF-8"%>

<html>
<head>
</head>

<body>
<div class="product-item base-product product-plan" data-bind="css:{'selected': selected()}">

<div class="title-wrapper">

<div class="icon" style="background-image: url('https://yoururl.com')"></div>

</div>

<p class="sub-header-text">Entry-level, out-of-the-box feature set for individuals</p>

<p class="font-normal firstLine" style="font-weight: 500; margin: 32px 0px 30px;">Desktop access</p>

<hr>

<p class="plan-price"><span>${currency.symbol}</span>#{price}#</p>

<p class="font-normal no-margin priceCurrency">#{currency.text}#/#{uom}#/#{billingPeriod}#</p>

<div class="button-wrapper">

<div class="qty-container" data-bind="visible: selected()">

&<input type="text" class="input-spinner" min="0" data-bind="value: quantity">

</div>

<button class="btn btn-primary" data-bind="click: select">SELECT</button>

</div>
</div>
</body>
</html>
```

{% hint style="info" %}
For additional customization tips and tricks, please visit the developer docs.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.peakcommerce.com/product/rules-and-customizations/product-card-customizations/product-card-template.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
