HTML (Hyper Text Markup Language) is the standard content markup language of the web. It is an open standard developed and maintained by W3C (World Wide Web Consortium).
0
votes
0answers
13 views
3D CSS/HTML Gallery [on hold]
I made a 3D Gallery using CSS transforms and absolute positions. It looks nice until I resize it, margins between items change and it looks terrible.
https://jsfiddle.net/j7fLr3wm/
-2
votes
0answers
10 views
Showing overlay on onbeforeunload event [on hold]
I have two problem with event close tab.
I have a function to put a overlay with some text while browser ask to user if to close or not to close. I would like to show "Hello world!" instead of ...
2
votes
3answers
35 views
Collect, filter and display archive logs on demand
Wrote a php site to gather/filter/search daily archived logs from the archive directory using bash cat and ...
2
votes
1answer
44 views
A clock implemented using Moment.js
This is a POC for a clock using moment.js, eventually I plan to recreate this in Raect.js. Any opimisations or a better way to do it?
...
1
vote
0answers
29 views
CSS flexbox responsive grid system
I'm using the flexbox for the first time for a responsive grid system. It seems to be working as far as I tested but want to make sure it works on others too and see ways to improve this.
Please see <...
-3
votes
0answers
5 views
Code not displaying image and text correct [closed]
I am building a small website for a museum near me (https://benphh.github.io/heritage/). I can't get the and the image to stay on the same line, I'd appreciate any help. Thanks
2
votes
0answers
31 views
Overall assesment of portfolio website
I've just bought myself a domain and recently created a rough draft of a portfolio website.
A few of my friends have looked over the general design of it and given me some positive feedback so I ...
2
votes
0answers
20 views
HTML canvas element Encapsulation
I am preparing to write a widget for the browser that is both visual and interactive. I am a newbie to Javascript/Ecmascript and prototyping. I want to encapsulate the canvas element, abstract the ...
1
vote
0answers
9 views
Use checkbox to display side menu with only CSS
I am trying to improve a website to be as accessible as possible to screen readers and people who want to disable JavaScript (not necessarily both at the same time) so I use a checkbox with a label to ...
1
vote
0answers
36 views
Get a random movie based on user-provided criterion (release date, genre, etc.)
What could I do to better organize the Angular and Express code? On the other hand, is there anything that reflects a common beginner's mistake or violates a best practice? I've yet to touch up the ...
1
vote
0answers
31 views
One-page quiz web app for teachers
I'm an EFL teacher, and I built this web app to present a random group of questions for quizzes and tests. The page opens with random questions. Clicking anywhere brings up the spinner. Clicking ...
0
votes
1answer
45 views
sportsRunning and sportsWalking
There are two functions, sportsRunning and sportsWalking, that will render different text. For this, I am using an ...
-2
votes
1answer
43 views
Is it ok to change implementation of parent function with child data?
I was wondering is it OK to change implementation of parent class with child class data. I have situation of creating a child class (form) which extends the parent class (other form with same elements)...
7
votes
0answers
58 views
HTML Parser (using SAX)
Got bored writing a review on an HTML parser and decided I wanted to try.
So I threw this together to see I could parse an Amazon page.
...
3
votes
2answers
71 views
HTML parsing algorithm for extracting <a> tags
My intention is to create a complete HTML parser, so far I made a basic algorithm that iterates trough text and extracts everything in an "a" tag.
It works on everything I tried, but I want a review ...
5
votes
3answers
93 views
Beauty salon site in HTML 5
First time working with html 5 so far. Am I using my markup correctly thus far?
Semantically correct that is?
...
3
votes
1answer
85 views
Single-page website
I learned HTML, CSS, JS, and Bootstrap then I grabbed a PSD and tried to code it from scratch (to get experience and something for my currently-non-existent portfolio). Here's the result. I need ...
2
votes
0answers
39 views
Drawing app with JS / canvas
Created this drawing app with JS / canvas. JSHint is throwing errors but the app works just fine. Need help with code clean up / refactoring as I'm fairly new to JavaScript.
JSHint in Atom is fine ...
4
votes
1answer
77 views
Converting a Website Into a Single Page App
I want to convert my website into a single page app. This function does the trick:
...
5
votes
3answers
308 views
Button click handlers for a JavaScript text-based adventure game
I'm pretty new to JavaScript, and I'm trying to created a text-based game. I've written a few scenarios and based on the player's decision I have different scenarios written out. As of now I have the ...
1
vote
0answers
51 views
Moving a div inside p by to the body element
I get malformed HTML input with divs inside other HTML elements like the ...
9
votes
3answers
93 views
Html rendering framework with dynamics
I came to the conclusion that the previous framework was too complicated and not easily extendable so I tried it again but this time with dynamics.
It's much much shorter and I think it's much easier ...
1
vote
0answers
27 views
Angular2 sortable lists (using typescript)
I wrote a simple and small projects that present 3 buttons, each one loads a different list to the screen on the same place but not in the same time.
in my html I think I can maybe use some more ...
7
votes
0answers
58 views
Html rendering framework for emails
Sometimes I need to auto-generate html-emails. To make this task a little bit easier I created a simple framework that takes care of renderinghtml. Because I'm mainly interested in generating html for ...
0
votes
1answer
35 views
Excerpt from a grocery shopping site using SASS
I am a UI/UX designer. I am working on the HTML of a website, using Sass/scss+bootstrap 3 project. It's my first project in sass/scss.
Now my developer's feedback is: HTML code is not up to mark. ...
1
vote
2answers
75 views
HTML structure for a wedding website using FullPage.js
I am fairly new to coding and currently trying to write as much as I can get my hands on. I started off playing around with templates but now I've decided to go without and therefore I am sure there ...
3
votes
1answer
56 views
Ribbon animation code too repetitive
I spent the last two days getting a ribbon animation to work with divs so that I can later add li link elements to them to act as a menu. I used the progess bar animation code as inspiration from ...
3
votes
3answers
81 views
Simple website HTML
I'm not really sure if I'm using id's and classes correctly. I'm unaware as well if I'm doing bad practices and I would like some help with that. I'm pretty sure my id's and classes names are terrible ...
1
vote
1answer
29 views
Product information overlaid on a large image
I've created some full-width divs containing images and text to exposure products.
It did take a lot of trial and error (I do not have any kind of education).
However, it feels a bit clumsy and i'm ...
3
votes
1answer
33 views
Adding a class to a root element
I have written some ES2015 JavaScript that adds a class to a root element when one of it's immediate children is focused.
Here is the markup for the code to be run on:
...
1
vote
0answers
42 views
SSRS: code function to sanitise HTML for rendering in RDLC report
Background
I have an RDLC that among other things displays text coming in that is captured in SharePoint, using a custom control (TinyMCE) that exposes limited formatting options to users.
The SSRS ...
3
votes
1answer
54 views
0
votes
1answer
66 views
JavaScript DOM modification
I'm thinking about DOM modification performance.
In a perfect way, we alter each element but DOM modification is really heavy and alter many elements at same time froze the browser. I didn't make any ...
0
votes
0answers
24 views
Servlet to generate HTML printable form
I'm using a java servlet to generate HTML code to produce a printable form. I want the form to look like the paper version being used now (or as close as possible) to reduce confusion during the ...
2
votes
1answer
51 views
Optimizing Java HTML parser
I wrote a program that goes through a webpage and returns matches of regex. I used it on my letterboxd.com account to go through all of my movies (over 900 entries) and then find genres field for each ...
0
votes
0answers
30 views
Moving the HTTP and Request to controllers and Routes
I am new to Laravel framework and I made a project application which is working fine but someone said
You should avoid accessing the Request object in your views.
here is the full application ...
3
votes
3answers
88 views
Upper section of a vertical single-page website
This is my very first attempt to write HTML and CSS. I designed this website for a friend. I'm not sure if I used the best practices or maybe I did something wrong but I just started my learning ...
2
votes
3answers
80 views
C++ Tree Class implementation
I am trying to implement a class for the Node of a Tree in C++ in order to represent an HTML structure.
It is not complete by a shot, but i'd still like an opinion.
TreeNode.h :
...
6
votes
3answers
68 views
Bash script to extract HTML comment into a Markdown file
I learned Bash a million years ago. I just wrote this simple script used to get the first lot of HTML comments from a file, and spit it out in order to create a ...
0
votes
0answers
20 views
Idle game code optimization
I am currently making an idle game, and I currently have a few issues about optimization that I want to fix (which I will list at the end). But first, the code:
main.coffee
...
5
votes
3answers
60 views
Basic HTML structure for three columns of articles
I'm new to HTML and programming in general and I want to make sure my code is organized and that I'm using the best practices while I go along.
So, I made this example layout I would like to convert ...
4
votes
2answers
68 views
jQuery functions to add corresponding entries of lists
Thanks to this post, I was able to create a working piece of javascript that fits my needs. I have a div/ul/li based table where each "row" has 2 values that I want to have the sum for. Currently the ...
4
votes
1answer
99 views
Automation project
There are buttons on a page, each corresponding to a different code that needs to be sent to PubNub DSN, which is published to my home server to operate specific on/off commands for various lights in ...
1
vote
1answer
67 views
Moving To Object Orientated Programming
Please keep in mind I am new and still learning when reading the following.
What I am doing
I have the following code which pulls a sport, tournament and round NR, from a DB table called ...
9
votes
2answers
101 views
HTML5 markup for blog article
Recently I started a blog project. It is my first time that I create something so advance. I use task runners, SEO optimization, preprocessors, I will code in full stack environment and all the other ...
0
votes
0answers
69 views
Traffic Light Logic using angular
I am pretty new to angular and have implemented a traffic light logic for practice and would just like to see if I can improve it? Any suggestions on best practices and logic setup would be great.
...
1
vote
3answers
55 views
JavaScript validation form
Could this code be improved? Would you suggest more sophisticated way of doing client-side signup validation?
...
3
votes
1answer
85 views
Simple jQuery photo slider
I'm fairly new to front end web development, but finally felt confident enough to create my own jQuery slider. I wish to receive constructive criticism about my code, how I can optimize any line of ...
5
votes
3answers
166 views
Changing color on button click
I have an html button that when the user clicks the button it will change color from blue to red and back. Is there a better way to do this in jQuery?
HTML/jQuery
...
3
votes
0answers
23 views
Create archive webpage for newsletters based on nested array
I am creating a webpage for my newsletter archives. The archives are divided by year (currently there is only 1, but there could be many), then by topic, before listing each newsletter. There will ...