Jump to content

mohammad2232

Members
  • Posts

    14
  • Joined

  • Last visited

Recent Profile Visitors

1,353 profile views

mohammad2232's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. it should get amount and set it in send.php and send to gateway for pay (that "test" in api work for test it) but only show this
  2. hello i have 3 php smple file for local payment company that i tried to make simple form for work with that but really i can't do that! i just read some php , html , css references in w3schools step by step but i don't know where is problem!? these are free sample file functions.php function send($api, $amount, $redirect, $factorNumber=null) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://pay.ir/payment/send'); curl_setopt($ch, CURLOPT_POSTFIELDS,"api=$api&amount=$amount&redirect=$redirect&factorNumber=$factorNumber"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $res = curl_exec($ch); curl_close($ch); return $res; } function verify($api, $transId) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://pay.ir/payment/verify'); curl_setopt($ch, CURLOPT_POSTFIELDS, "api=$api&transId=$transId"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $res = curl_exec($ch); curl_close($ch); return $res; } send.php include_once("functions.php"); $api = 'test'; $amount = 'Amount'; $redirect = 'Callback'; $factorNumber = 123; $result = send($api,$amount,$redirect,$factorNumber); $result = json_decode($result); if($result->status) { $go = "https://pay.ir/payment/gateway/$result->transId"; header("Location: $go"); } else { echo $result->errorMessage; } verify.php include_once("functions.php"); $api = 'test'; $transId = $_POST['transId']; $result = verify($api,$transId); $result = json_decode($result); print_r($result); and i create index.php <!DOCTYPE html> <html> <body> <form method="post" action="/send.php"> Name: <input type="text" name="fname"> <br> <br> price: <input type="number" name="Amount"> <input type="submit"> </form> </body> </html> but this is not work can anybody help me thanks
  3. hello how can i change form error message ? https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_examples_contact when don't fill required field it show : please fill out this field how can i change it ? thanks
  4. hello how can i change this code that reset after hover? and other when we click on link ? https://www.w3schools.com/code/tryit.asp?filename=FMMNWG53ALUJ <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> @keyframes swing { 20% { transform: rotate3d(0, 0, 1, 15deg); } 40% { transform: rotate3d(0, 0, 1, -10deg); } 60% { transform: rotate3d(0, 0, 1, 5deg); } 80% { transform: rotate3d(0, 0, 1, -5deg); } to { transform: rotate3d(0, 0, 1, 0deg); } } .swing { transform-origin: top center; animation-name: swing; } button{ animation: swing 1.2s linear infinite; /* animation set */ animation-play-state: paused; /* but paused */ } button:hover{ animation-play-state: running; animation-play-state:reset; /* trigger on hover */ } </style> </head> <body> <button> <i class="fa fa-car" style="font-size:60px;color:green;" > </i> <p><b>Note:</b> This is my animation :) .</p> </button> </body> </html> Thanks
  5. Thanks so much for your Explanation Can you explain what is difference between id and class ?because both work as same https://www.w3schools.com/code/tryit.asp?filename=FMMEKN39KJL1 .wm36:link {color:red;text-decoration:none;} .wm36:visited {color:red;text-decoration:none;} .wm36:hover {color:green ; text-decoration:underline;} #wm37:link {color:red;text-decoration:none;} #wm37:visited {color:red;text-decoration:none;} #wm37:hover {color:green ; text-decoration:underline;} <p><b><a class="wm36" href="default.asp" target="_blank">This link changes text-decoration</a></b></p> <p><b><a id="wm37" href="default.asp" target="_blank">This link changes text-decoration</a></b></p> Thanks
  6. thanks every body i just find this https://www.w3schools.com/css/tryit.asp?filename=trycss_link2 this is what i need and for every like me
  7. Thanks for your response and remind me about css i just do this but nut properly work ! and i don't know problem , can you help me what's wrong <!DOCTYPE html> <html dir="rtl" align="right"> <title>W3.CSS Template</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <script src="https://codyhouse.co/demo/image-comparison-slider/js/modernizr.js"></script> <!-- Modernizr --> <style> body, h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif} .w3-row-padding img {margin-bottom: 12px} /* Set the width of the sidebar to 120px */ .w3-sidebar {width: 120px;background: #222;} /* Add a left margin to the "page content" that matches the width of the sidebar (120px) */ #main {margin-right: 120px} /* Remove margins from "page content" on small screens */ @media only screen and (min-width: 600px) { #main {margin-right: 0} } .cd-image-container { position: relative; width: 90%; max-width: 768px; margin: 0em auto; } .cd-image-container img { display: block; } .cd-image-label { position: absolute; bottom: 0; right: 0; color: #ffffff; padding: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; opacity: 0; -webkit-transform: translateY(20px); -moz-transform: translateY(20px); -ms-transform: translateY(20px); -o-transform: translateY(20px); transform: translateY(20px); -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s; -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s; transition: transform 0.3s 0.7s, opacity 0.3s 0.7s; } .cd-image-label.is-hidden { visibility: hidden; } .is-visible .cd-image-label { opacity: 1; -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } .cd-resize-img { position: absolute; top: 0; left: 0; width: 0; height: 100%; overflow: hidden; /* Force Hardware Acceleration in WebKit */ -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); transform: translateZ(0); -webkit-backface-visibility: hidden; backface-visibility: hidden; } .cd-resize-img img { position: absolute; left: 0; top: 0; display: block; height: 100%; width: auto; max-width: none; } .cd-resize-img .cd-image-label { right: auto; left: 0; } .is-visible .cd-resize-img { width: 50%; /* bounce in animation of the modified image */ -webkit-animation: cd-bounce-in 0.7s; -moz-animation: cd-bounce-in 0.7s; animation: cd-bounce-in 0.7s; } @-webkit-keyframes cd-bounce-in { 0% { width: 0; } 60% { width: 55%; } 100% { width: 50%; } } @-moz-keyframes cd-bounce-in { 0% { width: 0; } 60% { width: 55%; } 100% { width: 50%; } } @keyframes cd-bounce-in { 0% { width: 0; } 60% { width: 55%; } 100% { width: 50%; } } .cd-handle { position: absolute; height: 44px; width: 44px; /* center the element */ left: 50%; top: 50%; margin-left: -22px; margin-top: -22px; border-radius: 50%; background: #dc717d url("../img/cd-arrows.svg") no-repeat center center; cursor: move; box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3); opacity: 0; -webkit-transform: translate3d(0, 0, 0) scale(0); -moz-transform: translate3d(0, 0, 0) scale(0); -ms-transform: translate3d(0, 0, 0) scale(0); -o-transform: translate3d(0, 0, 0) scale(0); transform: translate3d(0, 0, 0) scale(0); } .cd-handle.draggable { /* change background color when element is active */ background-color: #445b7c; } .is-visible .cd-handle { opacity: 1; -webkit-transform: translate3d(0, 0, 0) scale(1); -moz-transform: translate3d(0, 0, 0) scale(1); -ms-transform: translate3d(0, 0, 0) scale(1); -o-transform: translate3d(0, 0, 0) scale(1); transform: translate3d(0, 0, 0) scale(1); -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s; -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s; transition: transform 0.3s 0.7s, opacity 0s 0.7s; } </style> <body class="w3-black"> <!-- Icon Bar (Sidebar - hidden on small screens) --> <nav class="w3-sidebar w3-bar-block w3-small w3-hide-small w3-center"> <!-- Avatar image in top left corner --> <img src="/w3images/avatar_smoke.jpg" style="width:100%"> <a href="#" class="w3-bar-item w3-button w3-padding-large w3-black"> <i class="fa fa-home w3-xxlarge"></i> <p>HOME</p> </a> <a href="#about" class="w3-bar-item w3-button w3-padding-large w3-hover-black"> <i class="fa fa-user w3-xxlarge"></i> <p>ABOUT</p> </a> <a href="#photos" class="w3-bar-item w3-button w3-padding-large w3-hover-black"> <i class="fa fa-eye w3-xxlarge"></i> <p>PHOTOS</p> </a> <a href="#contact" class="w3-bar-item w3-button w3-padding-large w3-hover-black"> <i class="fa fa-envelope w3-xxlarge"></i> <p>CONTACT</p> </a> <a href="#compare" class="w3-bar-item w3-button w3-padding-large w3-hover-black"> <i class="fa fa-envelope w3-xxlarge"></i> <p>compare</p> </a> </nav> <!-- Navbar on small screens (Hidden on medium and large screens) --> <div class="w3-top w3-hide-large w3-hide-medium" id="myNavbar"> <div class="w3-bar w3-black w3-opacity w3-hover-opacity-off w3-center w3-small"> <a href="#" class="w3-bar-item w3-button" style="width:25% !important">HOME</a> <a href="#about" class="w3-bar-item w3-button" style="width:25% !important">ABOUT</a> <a href="#photos" class="w3-bar-item w3-button" style="width:25% !important">PHOTOS</a> <a href="#contact" class="w3-bar-item w3-button" style="width:25% !important">CONTACT</a> <a href="#compare" class="w3-bar-item w3-button" style="width:25% !important">compare</a> </div> </div> <!-- Page Content --> <div class="w3-padding-large" id="main"> <!-- Header/Home --> <header class="w3-container w3-padding-32 w3-center w3-black" id="home"> <h1 class="w3-jumbo"><span class="w3-hide-small">I'm</span> John Doe.</h1> <p>Photographer and Web Designer.</p> <img src="/w3images/man_smoke.jpg" alt="boy" class="w3-image" width="992" height="1108"> </header> <!-- About Section --> <div class="w3-content w3-justify w3-text-grey w3-padding-64" id="about"> <h2 class="w3-text-light-grey">My Name</h2> <hr style="width:200px" class="w3-opacity"> <p>Some text about me. Some text about me. I am lorem ipsum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p> <h3 class="w3-padding-16 w3-text-light-grey">My Skills</h3> <p class="w3-wide">Photography</p> <div class="w3-white"> <div class="w3-dark-grey" style="height:28px;width:95%"></div> </div> <p class="w3-wide">Web Design</p> <div class="w3-white"> <div class="w3-dark-grey" style="height:28px;width:85%"></div> </div> <p class="w3-wide">Photoshop</p> <div class="w3-white"> <div class="w3-dark-grey" style="height:28px;width:80%"></div> </div><br> <div class="w3-row w3-center w3-padding-16 w3-section w3-light-grey"> <div class="w3-quarter w3-section"> <span class="w3-xlarge">11+</span><br> Partners </div> <div class="w3-quarter w3-section"> <span class="w3-xlarge">55+</span><br> Projects Done </div> <div class="w3-quarter w3-section"> <span class="w3-xlarge">89+</span><br> Happy Clients </div> <div class="w3-quarter w3-section"> <span class="w3-xlarge">150+</span><br> Meetings </div> </div> <button class="w3-button w3-light-grey w3-padding-large w3-section"> <i class="fa fa-download"></i> Download Resume </button> <!-- Grid for pricing tables --> <h3 class="w3-padding-16 w3-text-light-grey">My Price</h3> <div class="w3-row-padding" style="margin:0 -16px"> <div class="w3-half w3-margin-bottom"> <ul class="w3-ul w3-white w3-center w3-opacity w3-hover-opacity-off"> <li class="w3-dark-grey w3-xlarge w3-padding-32">Basic</li> <li class="w3-padding-16">Web Design</li> <li class="w3-padding-16">Photography</li> <li class="w3-padding-16">5GB Storage</li> <li class="w3-padding-16">Mail Support</li> <li class="w3-padding-16"> <h2>$ 10</h2> <span class="w3-opacity">per month</span> </li> <li class="w3-light-grey w3-padding-24"> <button class="w3-button w3-white w3-padding-large w3-hover-black">Sign Up</button> </li> </ul> </div> <div class="w3-half"> <ul class="w3-ul w3-white w3-center w3-opacity w3-hover-opacity-off"> <li class="w3-dark-grey w3-xlarge w3-padding-32">Pro</li> <li class="w3-padding-16">Web Design</li> <li class="w3-padding-16">Photography</li> <li class="w3-padding-16">50GB Storage</li> <li class="w3-padding-16">Endless Support</li> <li class="w3-padding-16"> <h2>$ 25</h2> <span class="w3-opacity">per month</span> </li> <li class="w3-light-grey w3-padding-24"> <button class="w3-button w3-white w3-padding-large w3-hover-black">Sign Up</button> </li> </ul> </div> <!-- End Grid/Pricing tables --> </div> <!-- Testimonials --> <h3 class="w3-padding-24 w3-text-light-grey">My Reputation</h3> <img src="/w3images/bandmember.jpg" alt="Avatar" class="w3-left w3-circle w3-margin-right" style="width:80px"> <p><span class="w3-large w3-margin-right">Chris Fox.</span> CEO at Mighty Schools.</p> <p>Jane Doe saved us from a web disaster.</p><br> <img src="/w3images/avatar_g2.jpg" alt="Avatar" class="w3-left w3-circle w3-margin-right" style="width:80px"> <p><span class="w3-large w3-margin-right">Rebecca Flex.</span> CEO at Company.</p> <p>No one is better than Jane Doe.</p> <!-- End About Section --> </div> <!-- Portfolio Section --> <div class="w3-padding-64 w3-content" id="photos"> <h2 class="w3-text-light-grey">My Photos</h2> <hr style="width:200px" class="w3-opacity"> <!-- Grid for photos --> <div class="w3-row-padding" style="margin:0 -16px"> <div class="w3-half"> <img src="/w3images/wedding.jpg" style="width:100%"> <img src="/w3images/rocks.jpg" style="width:100%"> <img src="/w3images/sailboat.jpg" style="width:100%"> </div> <div class="w3-half"> <img src="/w3images/underwater.jpg" style="width:100%"> <img src="/w3images/chef.jpg" style="width:100%"> <img src="/w3images/wedding.jpg" style="width:100%"> <img src="/w3images/p6.jpg" style="width:100%"> </div> <!-- End photo grid --> </div> <!-- End Portfolio Section --> </div> <!-- Contact Section --> <div class="w3-padding-64 w3-content w3-text-grey" id="contact"> <h2 class="w3-text-light-grey">Contact Me</h2> <hr style="width:200px" class="w3-opacity"> <div class="w3-section"> <p><i class="fa fa-map-marker fa-fw w3-text-white w3-xxlarge w3-margin-right"></i> Chicago, US</p> <p><i class="fa fa-phone fa-fw w3-text-white w3-xxlarge w3-margin-right"></i> Phone: +00 151515</p> <p><i class="fa fa-envelope fa-fw w3-text-white w3-xxlarge w3-margin-right"> </i> Email: mail@mail.com</p> </div><br> <p>Lets get in touch. Send me a message:</p> <form action="/action_page.php" target="_blank"> <p><input class="w3-input w3-padding-16" type="text" placeholder="Name" required name="Name"></p> <p><input class="w3-input w3-padding-16" type="text" placeholder="Email" required name="Email"></p> <p><input class="w3-input w3-padding-16" type="text" placeholder="Subject" required name="Subject"></p> <p><input class="w3-input w3-padding-16" type="text" placeholder="Message" required name="Message"></p> <p> <button class="w3-button w3-light-grey w3-padding-large" type="submit"> <i class="fa fa-paper-plane"></i> SEND MESSAGE </button> </p> </form> <!-- End Contact Section --> </div> <!-- Start Image Comparison Slider --> <div class="w3-padding-64 w3-content" id="compare"> <h2 class="w3-text-light-grey">compare</h2> <hr style="width:200px" class="w3-opacity"> <figure class="cd-image-container"> <img src="https://codyhouse.co/demo/image-comparison-slider/img/img-original.jpg" alt="Original Image"> <span class="cd-image-label" data-type="original">Original</span> <div class="cd-resize-img"> <!-- the resizable image on top --> <img src="https://codyhouse.co/demo/image-comparison-slider/img/img-modified.jpg" alt="Modified Image"> <span class="cd-image-label" data-type="modified">Modified</span> </div> <span class="cd-handle"></span> </figure> <!-- cd-image-container --> <script src="https://codyhouse.co/demo/image-comparison-slider/js/jquery-2.1.1.js"></script> <script src="https://codyhouse.co/demo/image-comparison-slider/js/jquery.mobile.custom.min.js"></script> <!-- Resource jQuery --> <script src="https://codyhouse.co/demo/image-comparison-slider/js/main.js"></script> <!-- Resource jQuery --> </div> <!-- End Image Comparison Slider --> <!-- Footer --> <footer class="w3-content w3-padding-64 w3-text-grey w3-xlarge"> <i class="fa fa-facebook-official w3-hover-opacity"></i> <i class="fa fa-instagram w3-hover-opacity"></i> <i class="fa fa-snapchat w3-hover-opacity"></i> <i class="fa fa-pinterest-p w3-hover-opacity"></i> <i class="fa fa-twitter w3-hover-opacity"></i> <i class="fa fa-linkedin w3-hover-opacity"></i> <p class="w3-medium">Powered by <a href="https://www.w3schools.com/w3css/default.asp" target="_blank" class="w3-hover-text-green">w3.css</a></p> <!-- End footer --> </footer> <!-- END PAGE CONTENT --> </div> </body> </html> https://www.w3schools.com/code/tryit.asp?filename=FMM32PDUH1ZU page not good seem (should have some space of right like this https://www.w3schools.com/code/tryit.asp?filename=FMM3MTDT1E11) and compare not good work you can see in https://www.w3schools.com/code/tryit.asp?filename=FMM32PDUH1ZU Thanks
  8. Thanks , how can i solved that ? which need change?
  9. Hello i tried to have many link style in one page (or one project) and tried to define different styles like: mylink:link { color: green; background-color: transparent; text-decoration: none; } mylink:visited { color: pink; background-color: transparent; text-decoration: none; } mylink:hover { color: red; background-color: transparent; text-decoration: underline; } mylink:active { color: yellow; background-color: transparent; text-decoration: underline; } but i think it can work only like : a:link { color: green; background-color: transparent; text-decoration: none; } a:visited { color: pink; background-color: transparent; text-decoration: none; } a:hover { color: red; background-color: transparent; text-decoration: underline; } a:active { color: yellow; background-color: transparent; text-decoration: underline; } and now how can i have many link style ? Thanks
  10. i can't understand your answer those are question for a w3school website moderator
  11. hello how can i compine these two codes https://www.w3schools.com/css/tryit.asp?filename=trycss_tooltip_bottom https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_password_val i need use hover box when mouse click password under password box i tried this but not work <!DOCTYPE html> <html> <head> <style> /* Style all input fields */ input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; margin-top: 6px; margin-bottom: 16px; } /* Style the submit button */ input[type=submit] { background-color: #4CAF50; color: white; } /* Style the container for inputs */ .container { background-color: #f1f1f1; padding: 20px; } /* The message box is shown when the user clicks on the password field */ #message { display:none; background: #f1f1f1; color: #000; position: relative; padding: 20px; margin-top: 10px; } #message p { padding: 10px 35px; font-size: 18px; } /* Add a green text color and a checkmark when the requirements are right */ .valid { color: green; } .valid:before { position: relative; left: -35px; content: "✔"; } /* Add a red text color and an "x" when the requirements are wrong */ .invalid { color: red; } .invalid:before { position: relative; left: -35px; content: "✖"; } .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; /* Position the tooltip */ position: absolute; z-index: 1; top: 100%; left: 50%; margin-left: -60px; } </style> </head> <body> <h3>Password Validation</h3> <p>Try to submit the form.</p> <div class="tooltip"> <div class="container"> <form action="/action_page.php"> <label for="usrname">Username</label> <input type="text" id="usrname" name="usrname" required> <label for="psw">Password</label> <input type="password" id="psw" name="psw" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" title="Must contain at least one number and one uppercase and lowercase letter, and at least 8 or more characters" required> <input type="submit" value="Submit"> </form> </div> <div id="message" class="tooltiptext"> <h3>Password must contain the following:</h3> <p id="letter" class="invalid">A <b>lowercase</b> letter</p> <p id="capital" class="invalid">A <b>capital (uppercase)</b> letter</p> <p id="number" class="invalid">A <b>number</b></p> <p id="length" class="invalid">Minimum <b>8 characters</b></p> </div> </div> <script> var myInput = document.getElementById("psw"); var letter = document.getElementById("letter"); var capital = document.getElementById("capital"); var number = document.getElementById("number"); var length = document.getElementById("length"); // When the user clicks on the password field, show the message box myInput.onfocus = function() { document.getElementById("message").style.display = "block"; } // When the user clicks outside of the password field, hide the message box myInput.onblur = function() { document.getElementById("message").style.display = "none"; } // When the user starts to type something inside the password field myInput.onkeyup = function() { // Validate lowercase letters var lowerCaseLetters = /[a-z]/g; if(myInput.value.match(lowerCaseLetters)) { letter.classList.remove("invalid"); letter.classList.add("valid"); } else { letter.classList.remove("valid"); letter.classList.add("invalid"); } // Validate capital letters var upperCaseLetters = /[A-Z]/g; if(myInput.value.match(upperCaseLetters)) { capital.classList.remove("invalid"); capital.classList.add("valid"); } else { capital.classList.remove("valid"); capital.classList.add("invalid"); } // Validate numbers var numbers = /[0-9]/g; if(myInput.value.match(numbers)) { number.classList.remove("invalid"); number.classList.add("valid"); } else { number.classList.remove("valid"); number.classList.add("invalid"); } // Validate length if(myInput.value.length >= 8) { length.classList.remove("invalid"); length.classList.add("valid"); } else { length.classList.remove("valid"); length.classList.add("invalid"); } } </script> </body> </html> thanks
  12. i just find this https://codyhouse.co/demo/image-comparison-slider/index.html and when i use that in this theme https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_templates_dark_portfolio&stacked=h them not work properly! can any body help me thanks
  13. hello how can i have image css like this website https://doctor-photo.co.uk/ it use Movable button and when move that it show image number 1 then image number 2 thanks
  14. hello can i do some change on your html them and sell them ? and i should use your copyright ? or i can remove that? can i remove your w3 css copyright and add mine and use to my project or use in your them and sell ? thanks
×
×
  • Create New...