✦ Verified product
John Packer JP071 Bb Cornet
NZD 799.00
Symphonia Music
Verified independent store
→
/* Symphonia Music Design System */ .symphonia-product-wrapper { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333; max-width: 800px; margin: 0 auto; line-he
ight: 1.6; } .symphonia-product-wrapper h1 { color: #000; font-size: 28px; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; } .symphonia-product-wrapper .sku-text { color: #888; font-size: 14px; margin-bottom: 20px; } /* Dropdown Styles */ .symphonia-product-wrapper details { border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease; } .symphonia-product-wrapper summary { background-color: #333; color: #ffffff; padding: 15px 20px; font-weight: bold; font-size: 18px; cursor: pointer; list-style: none; outline: none; display: flex; justify-content: space-between; align-items: center; } .symphonia-product-wrapper summary::-webkit-details-marker { display: none; } .symphonia-product-wrapper summary::after { content: "▾"; font-size: 14px; } .symphonia-product-wrapper .dropdown-content { padding: 25px; background-color: #fff; } /* List Styling */ .symphonia-product-wrapper ul { padding-left: 20px; } .symphonia-product-wrapper ul li { margin-bottom: 10px; } /* Specification Table */ .spec-table { width: 100%; border-collapse: collapse; } .spec-table td { padding: 8px 0; border-bottom: 1px solid #eee; } .spec-table td:first-child { font-weight: bold; width: 40%; color: #000; } /* Teacher/Modal Styles (Included per instructions) */ .teacher-trigger { background: #f9f9f9; padding: 15px; border: 1px solid #ddd; border-radius: 5px; cursor: pointer; font-weight: bold; margin-bottom: 10px; text-align: center; } .teacher-hidden-content { display: none; } .teacher-modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); } .teacher-modal-content { background-color: #fff; margin: 10% auto; padding: 30px; width: 80%; max-width: 600px; border-radius: 12px; position: relative; } .teacher-modal-close { position: absolute; right: 20px; top: 10px; font-size: 28px; cursor: pointer; } John Packer JP071 B flat Cornet The JP071 is our most popular student cornet, specifically designed to support swift progression for first-time players through the lower grades. Description The JP071 is a popular student cornet designed to guide first-time players through the lower grades. Specifically crafted for new players, this model includes various components to facilitate rapid progression. The JP071 is known for its excellent performance within its price range. Unique Benefits Education Standard: A favourite within the education market for reliability and affordability. Ergonomic Design: Designed specifically to be comfortable for younger players with optimally positioned 3rd valve slide ring and thumb hook. Beginner Resistance: Medium-large bore provides a suitable resistance for beginners. Specifications Model JP071, JP071S Key Bb Valves 3 Piston Stainless Steel Bell Size 123mm (4.84") Bore Medium-Large 11.68mm (0.460") Waterkeys 2 (Lever) Body Brass Finish Lacquer or Silverplate Lyre Box Yes Supplied With The JP071 is supplied as a complete outfit to get you started immediately: Sturdy case with backpack and shoulder straps Outer pocket for sheet music John Packer 4B Cornet mouthpiece Ultra Pure valve oil Maintenance guide and advice Warranty: Covered by a comprehensive 2-year warranty. Weights & Dimensions Weight (Instrument) 2lb 5oz Weight with Case 6lb 1oz Box Dimensions 18x8x11 in Boxed Weight 7lb 5oz × // Standard Modal Logic const modal = document.getElementById("teacherModal"); const modalBody = document.getElementById("teacherModalBody"); const closeBtn = document.getElementsByClassName("teacher-modal-close")[0]; document.querySelectorAll('.teacher-trigger').forEach(trigger => { trigger.addEventListener('click', function() { const content = this.nextElementSibling.innerHTML; modalBody.innerHTML = content; modal.style.display = "block"; }); }); closeBtn.onclick = function() { modal.style.display = "none"; } window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } }