Keller Worthen
@KellerWorthen
Hi, I'm Keller, I have been coding in HTML for a few years with a moderate level of knowledge
I have been working on this website for a long time, it now has 10 recipes.
I know that doesn't sound like a lot, but it takes time.
You can view the
HTML, CSS, JS
I want a free Domain for this website. I dont want people to see my email and send me spam. So how do I get a free Domain without making some sort of
HTML, CSS, JS
PattanAhmed @KellerWorthen Hi Keller,
If you have to buy a free domain, then you can get it from Freenom.com
And you can use something like Gandi.net
I think the above are only the websites to get a free domain.
*Hope this helps
Please mark my answer if this helps*3 years ago
Coder100 Sorry, you need an account for CNAME and security. https://freenom.com is the free domain service provider, but that's not the best in terms of reliability. Use something like https://gandi.net for more reliable domains.3 years ago
AstOwOlfo Without an account, no way.
If you change your mind, github’s student dev pack has free domain codes. https://freenom.com is also an option.3 years ago
I made a team called HTMLunited. Requirements to join:
know HTML
knowledge of CSS recommended
want to join
have ideas of what to do because I don't
What on earth is this new Emmet Abbreviation thing in HTML and how do I use it.
PattanAhmed @KellerWorthen Hi,
To know what is Emmet Abbreviation
This is a Wikipedia's suggestion on your question.
Click here to proceed with the site)
To learn and know
You can check this website to know and learn what the heck Emmet Abbreviation is in HTML.
Click here to go
And this too
Hope this helps
Please mark my answer if this helps.3 years ago
Add a comment if you find bugs, have recommendations, or want a recipe added.
Currently there are several recipes, I will be adding more and more.
UP
HTML, CSS, JS
FlameFeather78 Hello @KellerWorthen, @nighmare would like you to add brownies to your recipe site. Thanks!3 years ago
This code is not working and i don't know why. I am not very good at JavaScript, and this is just supposed to print whatever the user types in the inp
I am wanting to make a search engine that will search just my website to make it more accessible.
Anybody have ideas on how to do this?
Coder100 Hello. Here's the thought process:
First, you index all your pages in a js file:
const pages = [{
url: "[url here]",
keywords: ["key","words","here"]
}];
And then, to get some search results, you can just do:
let search = "[get user input]";
array.filter(page => page.keywords.some(keyword => keyword.includes(search)))
Hopes this helps!3 years ago
seanlnge If it is only searching your website, you can create an array of all of the pages and then create a function that returns a few of those options.3 years ago
Im trying to make a recipe website with like buttons that work and can only be clicked once to prevent spamming.
I am not very skilled.
So how would I
Raphtalia depends how thorough you want to be about spam prevention. do you want it restricted to signed in users? (can be bypassed by multiaccounting), do you want to store a cookie? (can be bypassed by clearing cookies) or do you want it per visit to the page? (can be bypassed by refreshing the page). Depending on which approach you want to go for i could help you with that. Also, i heavily advise staying away from PHP, JS is a better option in my opinion.3 years ago
Aqtion you could make a js function for this like button, and add a variable. then using this variable, if the user clicks the like button, it increments, and this all happens inside a while loop where it is
while (var<=1) {
alert("Yey u liked")
}
or something like that. i'm not too great with js, so maybe someone has a better answer.3 years ago
Hey I need some simple ideas for a Repl in HTML/CSS. It can be a little complicated but I'm not very experienced
Hey i need inspiration for some sort of website using simple html and css with maybe a bit of JavaScript.
I need some madlibs for this website! please post your ideas in the comments section in this format:
bob [verb] across the [noun]
You will be given cr
I want to make a certain class (`) be centered using css. I tried using .name { align:center; }` but nothing happened. please help!
Add a comment with your game (made on repl) to have it added to this website via iframe! Most coding languages are accepted. Please do not add games y
HTML, CSS, JS
I have been trying to make a website where you can go to, say, web.com/test but all I can get is web.com/test.html and I don't like it. Any advice?
mwilki7 Use a folder for 'test' and put inside the 'test' folder another index.html
Here is an example:
https://file-array-test.mwilki7.repl.co/
Here is the repl:
https://repl.it/@mwilki7/file-array-test
If you want to see the URL change I recommend opening it in another window.3 years ago