Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

html

  1. LKinneyX23

    Responsive columns question

    I am not sure if this can be done with HTML and CSS, but thought I'd ask on here. I help a friend with their website. There's a store page. As I don't even own a smart phone, I had no idea it's apparently frustrating for phone users. I have it set up as a responsive site with rows/columns. On...
  2. Shdwz

    What Is <br> Used For In HTML?

    So I recently started learning how to code in HTML so I can start making websites. The website I am using to learn mentions the element <br>. The website said it was an empty element that has nothing in it, but what is it actually used for? I recently saw something about a Break Point so is that...
  3. P

    React custom hook function constantly returns null

    I have a multi-use React Hook function, useGetData({url}), that takes a url, does a Fetch API, then returns the resulting JSON array string for further processing in other functions and components. However, useGetData({url}) constantly returns null every time, no matter what I do. import {...
  4. P

    How to return HTML into component without using <div> tag

    I have a page that uses CSS, namely Bootstrap, for design and styling, and extra <DIV> tags can affect the page's look-and-feel, so I want to return HTML from a React function inside a component without having to use a <div> tag: import React from 'react'; import DOMPurify from 'dompurify'...
  5. s-qaiser

    How to add .js and .html files to ionic/android studio for android apk deployment

    Hello, I have been struggling for the past two days, trying to convert my .js (interactivity) and .html (CSS and elements) files to an Android app. My code works fine and runs smoothly when it's in my browser, but I am unable to get the two files into Ionic/Visual Studio. I tried putting them...
  6. MTAL

    JavaScript Cloudflare Pages & Workers Deployment

    Hiya I am trying to deploy a web application that uses express as a development build to test it online via other users and I am trying to wrap my head around wrangler, I have a script.js that listens to activities on the port of the server and the server handles the creation of rooms and user...
  7. JimmysNetwork

    PHP Problem with uploading an image to MySQL Database

    Hi all, My goal: I am trying to have a system where users can upload an image, and it will save into ../assets/uploads & my image area in the database ( image varchar(255) latin1_swedish_ci Yes NULL ). I have also gave permissions for the files to be uploaded into the correct...
  8. tae20

    HTML & CSS Can someone help me find the error in my code?

    My content won't rest inside my background image properly. I need it to be centered with one another. It's just not happening. (expectation) (mine) <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">...
  9. strawbs89

    DJ QUE

    hi in short i'm trying to design a DJQUE where's DJ's can delete Songs ect so i have tested it out and all i'm getting is failed to get data please refresh all this when submitted from the form goes into a spreadsheet so the code Link: DJQUE HTML: <html> <head> <title> DJ Queue...
  10. yumedoll

    Answered Can a hyperlink inside an iframe manipulate separate iframe outside of it?

    So I have this homepage that contains two separate iframes that are sourced from two separate html files. One is a calendar, the other is a blog. What I want to do is to put hyperlinks on marked dates on the calendar that the user can click to jump to the related blog post of that date...
  11. H

    JavaScript how create my buttons inside the div with display grid?

    i want my button created inside the div with display grid. so you have 8 buttons in every row. its for my Javascript homework. <!DOCTYPE html> <html lang="fa" dir="rtl"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>test...
  12. OGShdwz

    CSS Within HTML Code

    So in my HTML Code I have, there is code that is CSS code. How does this work, since they are 2 separate types of code? I noticed this before and I ignored it, but I aa starting to get curious now. Since HTML and CSS code are separate, shouldn't the CSS code and the HTML code be separate? I at...
  13. OGShdwz

    HTML & CSS Ideas For Gaming Website

    So this is a post where I do and I don't need help. I have been creating a website for my Programming 2 class using AI per his instructions, and it went well. The project has come to an end, but I still want to work on it because I find coding interesting. I have a couple questions that I want...
  14. OGShdwz

    Best Way To Learn HTML, CSS, and JavaScript?

    So I am currently using a website called CodeCademy to learn more coding skills, and it is kind of going good, I am just wondering are there any other ways to learn coding. Specifically HTML, CSS, and JavaScript? It doesn't have to be online, I just want to know the best way. I am mostly asking...
  15. OGShdwz

    The Purpose Of Span and ID Tags, and It's Uses

    As you may have seen my post before, I am going through the process of learning HTML, CSS, and JavaScript! So this one is about ID's and Span tags. So for ID's what is their purpose and why do we use them? I get they are an attribute, and I know they do something, but I don't know why, so could...
  16. OGShdwz

    Don't We Just Confuse Ourselves and Increase The Complexity Of Our Code?

    So I am currently taking a course to learn HTML Code, then after that I will move on to CSS Code, and then finally JavaScript Code! But I have a question, so when we use the <div> and </div> tags, doesn't that just increase how complex our code is? I saw someone else mention this before, but I...
  17. OGShdwz

    ChatGPT and Coding Problems

    So since I don't personally use JavaScript, CSS, and HTML to make code, I had to use ChatGPT to write the code for me. I was coding this on Replit, as per the instructions I was given, but I ran into some problems with my website. I went to ChatGPT to help me, and many other AI Models, but they...
  18. JosiahMaybe

    HTML Best way to have GIF favicon but icon in all browsers?

    Okay, I want a GIF icon for https://gugquettex.com but Yandex complained about no valid icon found. It cannot do animated icons. Is there any way I could have a default icon for incompatibility? I hear at root of hosting puting a file named favicon.ico makes an icon regardless of whether it is...
  19. H

    Grid item with aspect-ratio

    Hello there! The problem I want to solve is in this codepen: https://codepen.io/hebrerillo/pen/rNbLXaR As you can see, the second grid item overlaps the first item, even though the first item has a specific width and height. Why?? Thank you so much!
  20. tomliv

    Reusable component structure

    We're all about components these days right? Here's a situation I struggle with frequently. You are making a reusable card component - theoretically built as reusable and should be able to be placed anywhere you need a card-type layout. There is an image on left, and copy on right. Copy has a...
Back
Top Bottom