smokeybear.com
Open in
urlscan Pro
13.32.121.95
Public Scan
Submitted URL: https://engine.4dsply.com/Redirect.eng?MediaSegmentId=84896&dcid=1_ctx_84feed11-44e3-4df0-acbe-fd0bc7c69758&vmId=00000000-...
Effective URL: https://smokeybear.com/
Submission Tags: falconsandbox
Submission: On March 21 via api from US — Scanned from DE
Effective URL: https://smokeybear.com/
Submission Tags: falconsandbox
Submission: On March 21 via api from US — Scanned from DE
Form analysis
3 forms found in the DOM<form class="search-form" data-query-url="https://smokeybear.com/search">
<input id="headerSearch" type="text" placeholder="Enter Search Term">
<label class="sr-only" for="headerSearch">Search Text</label>
<button class="button-search button-flat" type="submit">
<span class="sr-only">Search</span>
<svg class="svg-icon icon-search">
<use xlink:href="#icon-search"></use>
</svg>
</button>
<button class="button-close"><span class="sr-only">Close</span></button>
</form>
<form class="search-form ui-bright">
<input id="overlaySearch" type="text" placeholder="Enter Search Term">
<label class="sr-only" for="overlaySearch">Search Text</label>
<button class="button-search button-flat" type="submit">
<span class="sr-only">Search</span>
<svg class="svg-icon icon-search">
<use xlink:href="#icon-search"></use>
</svg>
</button>
<button class="button-close"><span class="sr-only">Close</span></button>
</form>
<form data-form-disabled="">
<div class="ValidationErrorMessages" aria-label="There was a problem with the form" tabindex="0">
<div class="ErrorsTitle">There is a problem with the form</div>
<div class="NameValidation" aria-label="Please enter your name" tabindex="0">Please enter your name</div>
<div class="StateValidation" aria-label="Please select a state" tabindex="0">Please select a State</div>
<div class="AgeValidation" aria-label="Please verify your age" tabindex="0">Please verify your age</div>
</div>
<div class="inputs">
<label class="sr-only" for="PledgeForm-name">Your Name</label>
<input aria-label="Your Name" type="text" name="name" id="PledgeForm-name" placeholder="Your Name">
<div class="select-rounded">
<label class="sr-only" for="PledgeForm-state">Select a State</label>
<select id="PledgeForm-state" aria-label="Select A State" name="state">
<option value="">Select a State</option>
<option value="al">Alabama</option>
<option value="ak">Alaska</option>
<option value="az">Arizona</option>
<option value="ar">Arkansas</option>
<option value="ca">California</option>
<option value="co">Colorado</option>
<option value="ct">Connecticut</option>
<option value="de">Delaware</option>
<option value="fl">Florida</option>
<option value="ga">Georgia</option>
<option value="hi">Hawaii</option>
<option value="id">Idaho</option>
<option value="il">Illinois</option>
<option value="in">Indiana</option>
<option value="ia">Iowa</option>
<option value="ks">Kansas</option>
<option value="ky">Kentucky</option>
<option value="la">Louisiana</option>
<option value="me">Maine</option>
<option value="md">Maryland</option>
<option value="ma">Massachusetts</option>
<option value="mi">Michigan</option>
<option value="mn">Minnesota</option>
<option value="ms">Mississippi</option>
<option value="mo">Missouri</option>
<option value="mt">Montana</option>
<option value="ne">Nebraska</option>
<option value="nv">Nevada</option>
<option value="nh">New Hampshire</option>
<option value="nj">New Jersey</option>
<option value="nm">New Mexico</option>
<option value="ny">New York</option>
<option value="nc">North Carolina</option>
<option value="nd">North Dakota</option>
<option value="oh">Ohio</option>
<option value="ok">Oklahoma</option>
<option value="or">Oregon</option>
<option value="pa">Pennsylvania</option>
<option value="ri">Rhode Island</option>
<option value="sc">South Carolina</option>
<option value="sd">South Dakota</option>
<option value="tn">Tennessee</option>
<option value="tx">Texas</option>
<option value="ut">Utah</option>
<option value="vt">Vermont</option>
<option value="va">Virginia</option>
<option value="wa">Washington</option>
<option value="dc">Washington DC</option>
<option value="wv">West Virginia</option>
<option value="wi">Wisconsin</option>
<option value="wy">Wyoming</option>
</select>
</div>
</div>
<div class="verify">
<input tabindex="0" aria-label="Age Check" type="checkbox" id="age-check" value="on">
<label for="age-check">By checking this box I verify that I am 13 years of age or older.</label>
</div>
<script>
(function() {
document.addEventListener("DOMContentLoaded", function() {
if (!window.recaptchaLoaded) {
var RECAPTCHA_SELECTOR = '.GoogleCaptcha',
RECAPTCHA_CONTAINER = '.recaptcha',
RECAPTCHA_UNCHECKED_CLASSNAME = 'CaptchaInput-error',
DATA_FORM_DISABLE_SELECTOR = 'data-form-disabled',
RECAPTCHA_LIBRARY = 'https://www.google.com/recaptcha/api.js?onload=recaptchaLoaded',
recaptchas;
var stopFormSubmit = function(e) {
var captcha = e.target.querySelector(RECAPTCHA_SELECTOR);
var captchaContainer = e.target.querySelector(RECAPTCHA_CONTAINER);
e.preventDefault();
e.stopImmediatePropagation();
e.stopPropagation();
captcha.classList.add(RECAPTCHA_UNCHECKED_CLASSNAME);
captchaContainer.classList.add('error');
//if ('scrollIntoView' in document.documentElement) {
//captcha.scrollIntoView(false);
//}
};
// Polyfill for DOM 'closest' function for IE 9+
if (!Element.prototype.closest) {
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
}
Element.prototype.closest = function(s) {
var el = this;
if (!document.documentElement.contains(el)) return null;
do {
if (el.matches(s)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null && el.nodeType === 1);
return null;
};
}
window.recaptchaLoaded = function() {
recaptchas = document.querySelectorAll(RECAPTCHA_SELECTOR);
window.recaptchaDisable();
};
window.recaptchaEnable = function() {
recaptchas.forEach(function(captcha) {
let form = captcha.closest('form');
let captchaContainer = captcha.closest(RECAPTCHA_CONTAINER);
console.log(captchaContainer)
form.removeAttribute(DATA_FORM_DISABLE_SELECTOR);
form.removeEventListener('submit', stopFormSubmit);
captcha.classList.remove(RECAPTCHA_UNCHECKED_CLASSNAME);
captchaContainer.classList.remove('error');
});
};
window.recaptchaDisable = function() {
recaptchas.forEach(function(captcha) {
let form = captcha.closest('form');
form.setAttribute(DATA_FORM_DISABLE_SELECTOR, '');
form.addEventListener('submit', stopFormSubmit);
});
};
let scriptTag = document.createElement('script');
scriptTag.setAttribute('src', RECAPTCHA_LIBRARY);
scriptTag.setAttribute('async', 'true');
document.querySelector('head').appendChild(scriptTag);
}
});
})();
</script>
<div class="recaptcha">
<div class="GoogleCaptcha g-recaptcha" data-sitekey="6LfUOisaAAAAAL_KB34-5uXORrJuhRhzX2_AcTto" data-callback="recaptchaEnable" data-expired-callback="recaptchaDisable">
<div style="width: 304px; height: 78px;">
<div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-2i2gg4rqtljb" frameborder="0" scrolling="no"
sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
src="https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LfUOisaAAAAAL_KB34-5uXORrJuhRhzX2_AcTto&co=aHR0cHM6Ly9zbW9rZXliZWFyLmNvbTo0NDM.&hl=de&v=YurWEBlMIwR4EqFPncmQTkxQ&size=normal&cb=4dih3j1jm2a3"
data-gtm-yt-inspected-2772646_49="true" data-gtm-yt-inspected-42="true"></iframe></div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
</div><iframe data-gtm-yt-inspected-2772646_49="true" data-gtm-yt-inspected-42="true" style="display: none;"></iframe>
</div>
</div>
<button class="button-rounded ui-light" type="submit">Sign the Pledge</button>
</form>
Text Content
For_Elementary Layer_3 Benefits icon-search Forest_Links Middle_School_Resources pause icon-play Fighting_wildfires Smokey Bear logo Skip to Main Content Menu * Close * About Wildland Fire * Back * About Wildland Fire * Benefits of Fire * Fire Science * Fighting Wildfires * Prevention How-Tos * Back * Prevention How-Tos * Campfire Safety * Equipment Use and Maintenance * Backyard Debris Burning * How to Prepare Your Home for Wildfire * Smokey's History * Back * Smokey's History * About the Campaign * Story of Smokey * Smokey for Kids * Back * Smokey for Kids * Preventing Wildfires * Campfire Rules * About Smokey * Story Maker * Design a Coloring Book * Smokey's Scouts * Reading Challenge * 80th Birthday Mission * For Educators * Back * For Educators * Elementary Resources * Middle School Resources * Forest Links * Library Reading Challenge * Librarian Letter: 80th Birthday Mission Search Search Text Search Close Share to Social Twitter Facebook Close Spanish Search Text Search Close SMOKEY BEAR LIVES WITHIN US ALLWE NEED YOU TO PREVENT WILDFIRES Celebrate 80 years of Smokey by exploring Smokey’s history throughout the generations! Learn More Decades Watch Now SMOKEY VIDEOS Decades Now Playing Smokey is Within – Friends Now Playing Smokey is Within – Geared Up Granny Now Playing Grilling with Assistant Smokey Now Playing Camping with Assistant Smokey Now Playing VIEW MORE PSAS ON YOUTUBE Download Transcript VIEW MORE PSAS ON YOUTUBE * Campfire icon Campfire icon CAMPFIRE SAFETY Step-by-step visual guides to walk you through campfire safety. Get Crackling * Home icon Home icon BACKYARD DEBRIS BURNING Here’s what you need to learn before you burn your yard waste. Hot Tips * Wrench icon Wrench icon EQUIPMENT USE & MAINTENANCE Proper equipment use and maintenance is important to preventing wildfires. Learn How * ABOUT WILDLAND FIRE -------------------------------------------------------------------------------- Understand the basics of wildfire, fire’s natural role, and how fire is often the best defense against wildfires. Learn More * SMOKEY'S HISTORY -------------------------------------------------------------------------------- The famous campaign and the rescued cub that became the living symbol of this important cause. Learn The Story * FOR EDUCATORS -------------------------------------------------------------------------------- Spread Smokey’s message while teaching kids a variety of skills and subjects with resources for grades K–8. FIND RESOURCES * SMOKEY FOR KIDS -------------------------------------------------------------------------------- Visit Smokey for Kids for activities, games and fun facts for kids. START EXPLORING * READING CHALLENGE -------------------------------------------------------------------------------- Celebrate Smokey’s 80th Birthday by joining the Smokey Bear Reading Challenge. GET STARTED GET STARTED: Local Tally ALASKA 367Pledges Select a State Select a State AlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWashington DCWest VirginiaWisconsinWyoming TAKE THE PLEDGE I pledge to: * be careful anytime I use fire or items that can cause sparks. * never leave my fire unattended. * drown, stir, drown again and feel it’s cool with the back of my hand when I put out my fire. * NOT use fire or operate equipment when it’s windy, dry or hot. * make sure there are at least 15 feet between my fire and flammable things. * always have a water source nearby. * put out and discard smoking materials properly. * NOT dump hot ashes from my BBQ grill or firepit. Go Back Continue HMMM... Something’s not working properly. Check back later. Only you can prevent wildfires. Show your commitment to making a difference. Sign the pledge to help stop the spread of wildfires. -------------------------------------------------------------------------------- Take the pledge Wildfires are any unplanned fires that burn in forests and other wildlands such as shrub or grass communities. They’re a powerful natural force we must fully understand, and respect, in order to best help control. Nearly nine out of ten wildfires nationwide are still caused by humans. YOU DID IT! -------------------------------------------------------------------------------- Thanks for signing up to protect against wildfires! Share this on Twitter Post this on Facebook SIGN THE SMOKEY BEAR PLEDGE Please fill in the fields below and then click sign. All fields are required. There is a problem with the form Please enter your name Please select a State Please verify your age Your Name Select a State Select a State AlabamaAlaskaArizonaArkansasCaliforniaColoradoConnecticutDelawareFloridaGeorgiaHawaiiIdahoIllinoisIndianaIowaKansasKentuckyLouisianaMaineMarylandMassachusettsMichiganMinnesotaMississippiMissouriMontanaNebraskaNevadaNew HampshireNew JerseyNew MexicoNew YorkNorth CarolinaNorth DakotaOhioOklahomaOregonPennsylvaniaRhode IslandSouth CarolinaSouth DakotaTennesseeTexasUtahVermontVirginiaWashingtonWashington DCWest VirginiaWisconsinWyoming By checking this box I verify that I am 13 years of age or older. Sign the Pledge SMOKEY BEAR SAYS... @smokey_bear 3 years ago SMOKEY BEAR SAYS... Remember, #OnlyYou can prevent wildfires! For more helpful tips, visit https://t.co/rI2GCm8IO2 https://t.co/XMIqmTTW9r @smokey_bear 3 years ago Tweet now In 2022, 87% of wildfires were caused by humans. (Source: nifc.gov) About Wildland Fire * Benefits of Fire * Fire in Nature * Fire-dependent Ecosystem With Periodic Fire * Fire-dependent Ecosystem Without Periodic Fire * Prescribed Fires * Fire Science * Elements of Fire * Fighting Wildfires * The Front Line * Tools of the Trade Prevention How-Tos * How to Prepare Your Home for Wildfire * Campfire Safety * How to Pick Your Campfire Spot * How to Prepare your Campfire Pit * How to Build Your Campfire * How to Maintain and Extinguish Your Campfire * Backyard Debris Burning * Equipment Use and Maintenance Smokey's History * About the Campaign * Story of Smokey Smokey for Kids * Preventing Wildfires * Campfire Rules * About Smokey * Story Maker * Design a Coloring Book * Smokey's Scouts For Educators * Elementary Resources * Middle School Resources * Library Reading Challenge Products & Licensing Program * Forest Links * Official Smokey Bear Licensees and Products * National Symbols Cache * National Association of State Foresters Store * twitter * instagram * youtube * facebook For Wildfire Prevention Professionals: Smokey Bear Awards Toolkit Smokey Bear Use Guidelines Smokey Costume Use Smokey Bear Costume - Job Hazard Analysis * Contact Info * Privacy Policy * Terms of Use * Nondiscrimination Statement * * * © 2021, The Ad Council x