Jump to content

ironheartbj18

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by ironheartbj18

  1. Hello at all!, I am working on the img center I am having struggled making the picture at the center . can you please help me with this thank you... <style> { margin:auto; } <!-- fix style later--> </style> <div class = "container"> <img src="images/6.png" alt="Responsive image" class="img-rounded img-responsive" width="auto" > <h2 class="text-center"> Check back soon</h2> </div> i made a video for example https://www.youtube.com/watch?v=4an4mYHbdh0&feature=youtu.be
  2. curious, if i am making own portfolio using the php along with the attach files while apply job or better buy own domain?
  3. can be used by wordpress to show that what i have create? does it count? because the wordpress is not showing the language program to create just drag and drop. that s it.
  4. first at all myself i m a basic developer i never experience in real world all i familiar basic with HTML, CSS, JS, PHP, MYSQL, RUBY. what i did is jump each languages since 2 months i study so hard since i quit from weld job. it was most motivated to me is the computer. I want to know if i have to understand all of basic PHP languages? what about the advance PHP language? I have noticed the w3.com is only all basic languages. is good idea to practice myself on my notepad++ before step to any higher level? because i don't know how or what suppose i do next. i really little bit confused. mean i have to continue study more than two years become well knowledge before i apply? what is your advice? shall i go on get a certification on my resume to look impression to the company? i need your some help because i am new to this. please help thanks brian van vlymen
  5. I am reading at w3schools.com I do not understand fully. (look at green TEXT color) I am trying to playground on my notepad++ it said $_SERVER["PHP_SELF"] exploits can be avoided by using the htmlspecialchars() function.The form code should look like this:<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>">The htmlspecialchars() function converts special characters to HTML entities. Now if the user tries to exploit the PHP_SELF variable, it will result in the following output: can i editor like this? since its error. <html><body> <form method = "POST" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>new8.php"> <b>UserName: </b><input type="text" name="username"><br><b>password: </b> <input type="password" name="password"><br><input type="submit"></form> </body></html> please let me know thanks.
  6. I made the video making things of thousand description what is going on and easier for you to understand https://www.youtube.com/watch?v=igM41r4Rzko&feature=youtu.be it only give a minute. you will see the setting on chrome there have three checkboxs on list. w3school.com is working notepad++ is NOT working???????????????????? seem its not right... it wont let me approved or blocked in somewhat. please help thanks!
  7. I am using chrome. why the geolocation wont showing getLocation i checked on my advance setting there is no necessarily checkbox "Send a "Do Not Track" request with your browsing traffic" I am not sure what excalty the file will go through from the document.getElementById("demo"). I checked at http://www.w3schools.com/html/html5_geolocation.asp it does not help me please help me to success what did i wrong anyone who have experienced this problem before thanks! btw, I am using IDE note++ here the code is <!DOCTYPE html> <html> <body> <p>Click below to get your coordinates:</p> <button onclick="showLocation()">Click</button> <script> var x = document.getElementById("demo"); function getLocation() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(showPosition); } else{x.innerHTML = "Geolocation is not supported by this browser.";} } function showPosition(position) { x.innerHTML = "Latitude: " + position.coords.latitude + "<br>Longitude: " + position.coords.longitude; } </script> </body> </html>
  8. I am using chrome. why the geolocation wont showing getLocation i checked on my advance setting there is no necessarily checkbox "Send a "Do Not Track" request with your browsing traffic" I am not sure what excalty the file will go through from the document.getElementById("demo"). I checked at http://www.w3schools.com/html/html5_geolocation.asp it does not help me please help me what did i wrong anyone who have experienced this problem before thanks!
  9. oh thats right thanks for your feedback!
  10. hello everyone i am new to this w3 this must be very exciting. I have question about the html code. How do you make the "second img src" move to the center? I am giving you the example the code... <!DOCTYPE html> <head> <style> body {text-align: center; text-align: center; background: url("https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/splash.jpg"); background-size: cover; background-position: center center; background-repeat: no-repeat; background-attachment: fixed; color: white; font-family:Helvetica; font-size: 24px; } input[type=submit] { background: limegreen; color: black; } p { font-size: 24px; color:black; background:white; font-family:Arial; } input{ border: 0; padding: 12px; font-size: 18px; } </style> </head> <body> <img src= "https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/avatar.jpg" height="250" width="250"> <p> Hi! I am learning how to make my very own web page! I really like blueberry muffins and long walks on the beach.</p> <input type="email" placeholder="Email"> <input type="submit"> <img src= "http://seanheritage.com/wp-content/uploads/2013/05/success.jpg" height = "250" width="250"> </body>
×
×
  • Create New...