Form Data to PDF with complex design - html

I need to create a webpage that will generate PDFs populated with tickets using data from a form.
I'm a beginner and only know a bit of HTML and CSS and don't really know how to approach this.
Here are some of my requirements for this project:
I'd like to be able to run this offline directly from the HTML file
I need the PDF to be populated with 10 evenly sized tickets with the same information (5 rows, 2 columns)
The tickets need to look good, I'd like to be able to use CSS to format them
I need this to be as simple for the user as inputting information and pressing submit to receive a PDF file to print or email
I would also like the tickets to have a logo displayed by default

Related

Is it possible to create a HTML Url from Sharepoint Document Libraries?

Im creating a Power Apps program and im trying to convert all the data you enter in the app into a sharepoint list. i have 3 lists: 2 lists containing text and 1 list for the picture uploads.
Now i want to convert them into a .html so i can print them in the next process.
However it doesnt work for the pictures and i dont know what i should to to get the file path of the pictures.
I want to select all the images with the same "Dateiname" and create a html containing the title and the image. the amount of images can be different.
Or should i chang the upload function completely and switch to an attachement process?
Sincerly Pascal
Googling stuff. I found something here: https://powerusers.microsoft.com/t5/Building-Power-Apps/How-to-load-an-image-for-onedrive-into-html-on-Power-Automate/td-p/1385389
but the whole "Append to string" doesnt let me create a name.

How to determine URL with search query filled in

I am trying to make a hyperlink to embed in a pdf report I am sending out to my company. For example I use multiple carriers and put in the container number for tracking field and hit search. I would like the url to the direct results page. How do I achieve this?
Website https://www.hamburgsud-line.com/liner/en/liner_services/ecommerce/visibility/track_trace/index.html
Tracking SUDU1335271

How can I translate some content on my website into a PDF file?

I am building a website where I need to put some content from that into a PDF file for people to print for example.
So let's say on my website you can create teams for a competition (just an example). So I would go onto the website an you can then write in an input field how many teams there should be (let's say 3), and how many people in total there should be (let's say 30). So on the next I can then distribute these people into the teams, so for example "Team 1" has 10 people, "Team 2" has 8 people, and "Team 3" has 12 people. And on the last page I can write the names of the different team members.
So in principle this would be a table with 3 columns, and then 10, 8, and 12 rows.
I now wish to somewhat put that onto a PDF with nothing of the formatting from the website, but like a PDF template, where these tables then are inserted. So for example I have created this in Word just to visualize what I would like the output to be. But of course, this is nothing like it would look on the website, since that would be formatted differently.
Can this even be done, or do I have to think of another clever way to do it ? Like pre-made PDF files where I have taken most combinations into account fx, or...?
You can use a download button that links to an html page where only the table is display an add the attribute download to the button to tell the browser not to open the html page but to download it. you can also specify supported extensions like html, php, js, pdf and so on.
Download table as Pdf

Simulate an Excel worksheet on HTML page

I am working on a page where visitors need to copy-paste hundreds of rows from an Excel spreadsheet on to the page. The easier way to do it is to display a text area and parse the different columns.
But is there a way to display something like a spreadsheet? That will be more user friendly. I tried CKEditor for an option like this, but it doesn't appear to exist.
You can display a excel spreedsheet in asp code either c# or vb.
Try this link for displaying Spreedsheets,
Displaying Spreedsheet on webpage

Read and Write to Access using a HTML webpage

Im quite new to HTML. What I am trying to do, is create a table in HTML (Which I have done with the standard table tags (table)(/table) etc...
The table has a number of headings, such as Name, Number, 10/10, Percentage, Option
(those aren't the exact titles but you get the idea)
The Name and Number heading is just text that won't change (the same for the text beneath these columns) Which is all fine and dandy, very easy to do.
The part I am struggling with, is part of the table that needs to be able to be edited and saved. In a nutshell, what I want 2 of the columns to do:
When the webpage is loaded up, display information that is stored in MS-Access or MS-Excel (So Automatically READ from file on page loadup)
When the user changes information on the webpage I want it to amend the data in the correct cells on the Access page, so overwrite it, As if you were typing something into Access yourself and clicking the save button.
Is this possible using HTML, Javascript and or PHP? Everything needs to be Clientside. The webpage is built, i'm Using Input type="text" for the text boxes in the table, and I was wondering if using (form) (/form) and some (Script) I could do this. I have searched on the internet and have found some examples where you can read and write to Excel but need ActiveX enabled on IE. It's a work computer and a task I have been asked to complete. There are no administrator privaliges on the system, and I can't enable ActiveX controls in IE so the other method did not work for me. Is there any other way?
You can't archive things like file access, reading and writing to databases's client side. You need to use a server side technology, incidentally, PHP is a server side technology and not client side.
Client side is everything that is run on the users browser, I.E. Chrome, etc. Server side is everything that is run within the web server, before the HTML is sent to the client.
I get the feeling your trying to run before you can walk here. You need to research how web sites work more.