Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by Ash

  1. Ash

    Fun activity Say hello... in a coding language!

    <!DOCTYPE html> <html> <head> <title>Hello</title> </head> <body> <h1>Hello everyone!</h1> <p>How are you all doing?</p> </body> </html>
  2. Ash

    JavaScript Highlight current page problem

    @paganJim Just noticed that the sub-menu list items like "Freya's Aett" aren't links. Could that be the cause of it? Might be worth making Freya's Aett a link and seeing if that fixes it.
  3. Ash

    JavaScript Highlight current page problem

    @paganJim, I can't help much with the JavaScript but for the nested list, I believe you need to have it nested inside the parent <li> element. So like this <li><a href="aetts.php">The Aetts</a></li> <li><a href="runes.php">Runes</a> <ul> <li>Freya's Aett</li> </ul> </li> <li><a...
  4. Ash

    Answered Centralize & underline

    @Developsom We all start from somewhere and it's never a problem to ask simple questions. We're always here to help :) To add underline to text, you can use the text-decoration property. And to centre text, you can use text-align. For example: <h1 class="title">Frambozen</h1> .title {...
  5. Ash

    One more website for review. What do you think?

    Was everything coded from scratch? Just curious because the carousel is very cool. I love the design used for the cards for the service prices too. Just like your other site, I think it looks really nice :)
  6. Ash

    Python What is the easiest application(website) that you can make that uses database?

    I was going to suggest a to-do website as well, actually. Allow them to register, create different lists, and add items to those lists. That shouldn't be too hard but still complex enough for you to get a good mark.
  7. Ash

    JavaScript Can I change only a part of innerHTML with JavaScript

    Looks like it is possible without the span element actually. function myFunction() { document.getElementById('text').innerHTML = document.getElementById('text').innerHTML.replace("an", "my"); } This would essentially replace the text with the same text but after changing the "an" word to...
  8. Ash

    JavaScript Can I change only a part of innerHTML with JavaScript

    Maybe someone has a simpler solution but I would simply add a span element for the "an" text. Then you can just change the contents of that element. <p id="text">This is <span id="changeText">an</span> example</p> function myFunction() { document.getElementById('changeText').innerHTML =...
  9. Ash

    Fun activity Say hello... in a coding language!

    #include <iostream> using namespace std; int main() { cout << "Hello everyone"; return 0; }
  10. Ash

    Fun activity Say hello... in a coding language!

    class Howdy { public static void main(String[] args) { System.out.println("Hey Malcolm!"); System.out.println("How are you doing?"); } }
  11. Ash

    HTML & CSS Blinking Button Code with icons

    What do you mean by blinking button exactly? As in it continuously flashes? Unfortunately, the image you uploaded is static so not sure if that is what you mean.
  12. Ash

    Fun activity Say hello... in a coding language!

    <b>Hello there everyone</b>
  13. Ash

    DiscussionHub.io | General Discussion Community

    Did you know that we have groups for certain interests? Enjoy anime? Join the Animanga group. Or if you want a trip down memory lane, why not pop down to our Memory Lane group? Latest Statistics Threads - 2,656 Messages - 33,733 Members - 127
  14. Ash

    Can you leave a feedback about my forst web design?

    Had a quick look around and I have to say, it looks very nice. The colour scheme is perfect, the font is nice (might steal it :p), and the googly eyes that follow your mouse is a really nice touch. Well done :). Did you use anything as a base for the theme or was everything built from the...
  15. Ash

    HTML & CSS NOOB in need of advice/consultation from experts

    Feel free to PM me about it if you want. It might be good to just share the questions you have here as I'm sure a lot of other users could share some valuable information with you ;)
Back
Top Bottom