Hyperlink in HTML template of App Script not working - google-apps-script

I created an HTML template and this template is used to send email to people. There is a hyperlink that I included in the email. However, when the email is received by the recipient the hyperlink is not active. I cant figure out what is the issue here.
<!DOCTYPE html>
<html>
<head>
<base target="_top">
</head>
<body>
<h2>Your Quality Audit is complete!</h2>
<p>
Hello <?= data[0];?>,
</p>
<p><strong>This email is to let you know that a Quality Audit was completed for you.</strong></p>
<p>
The next step is for you to click this <a href=“https://drive.google.com/drive/folders/1MKlD631O5Rz2OdEPHsJMY7vNcPCvfTvP”> link </a> to view your audit results.
</p>
<p>If you have any questions regarding the audit, please reach out to your supervisor.</p>
<p>Best Regards,</p>
<p><?= data[4];?><br>Customer Support Team</p>
</body>
</html>
Below is the email received.
enter image description here
I followed the html formatting that I found when I looked it up on the internet. Not sure what I am doing wrong here.

Related

HTML transfer to Filezilla (images won't show)

"This won't transfer to the FileZilla correctly from Notepad++ the images won't show? I asked the teacher for help, but he doesn't know the material well enough to trouble shoot the problem. Internet Explorer will run the module and the text runs just fine, but Google Chrome say Error 2, and FileZilla won't register the pictures, they only show as black box icons, pls help"
<html>
<head>
<img src="images/images12.jpg" style="padding:6px" align="center" height="400px" width="400px">
<style>
#this is the set up for the text body {
font-family: Papyrus, fantsy;
text-align: center;
}
h1 {
font-family: Papyrus, fantsy;
text-align: center;
}
h2 {
font-family: Papyrus, fantsy;
text-align: center;
}
</style>
header for the home page
<title> Woody's Wondering's</title>
<header>
<h1>Which way did Woody Go?</h1>
</header>
<nav>
<b>
Home
Places To Go
Whats Free
<br>
<br>
Kids....Cheap easy Fun!
<br>
Adults Only
</b>
</nav>
<main>
<h2>You Next Adventure is only a click away!!!</h2>
<p>Welcome to Woody's Wonderings were everything is cheep and easy to find in Ohio.....How Cheap, well pracically 20 dollars to free. </p>
<h2>Meeting all your fun fun needs!!!</h2>
<p>Keeping the site updated with new and improved places & Events year around
</p>
</main>
<footer>
<small><i>
Jessica Harper</i></small>
</footer>
</body>
</html>
Your image is in the head of the html document. Correct structure for html is,
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Template</title>
<!–– Style sheets & other importations go here ––>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!–– Your content goes here ––>
<!–– Javascript files go here ––>
<script src="js/scripts.js"></script>
</body>
</html>
From w3schools,
The element is a container for metadata (data about data) and
is placed between the tag and the tag.
HTML metadata is data about the HTML document. Metadata is not
displayed.
Metadata typically define the document title, character set, styles,
links, scripts, and other meta information.
But I tested myself, and the images do work if the image exists in the path. Please check the image exists in the location you have in the img tag.
I am assuming you have uploaded the images along with the html file. If not please upload the images through filezilla to the correct location.
The best way to find what is the issue is to check the browser console. You may find an error saying no image found in path/to/your/image and that is where you have to put your image!
Your HTML is malformed and does not have an opening <body> tag, which could be causing some issues. I'd recommend using the W3C HTML Validator to validate your code.
Errors like this are easier to visually spot if you use some sort of code-formatting/"pretty-print" tool (I like this one).
Notepad++ probably has a plugin for this as well.

Notepad ++ basic programming EVERYTHING BOLD

Ok, please don't hate me for my idiocy. I'm literally beginning programming html RIGHT NOW. so, first problem.
I am following a simple guide to learn the basic html formats and this is all I have:
<html>
<head>
<title>www.fuyah.com</title>
</head>
<body>
<div id= "Header" class = "shared_elements">
<!--#divs don't really do anything, just for organization and targeting with css-->
<h1>The Adventure Begins<h1>
<span> this is my page. </span>
This is the beginning down my road of web development. It begins with one step...
</div>
</body>
</html>
For some reason when I look online at my page, everything is bold. I'm not sure why.
You haven't closed your <h1> tag and also <span "> there's unnecessarily " in there
<html> <head> <title>www.fuyah.com</title> </head>
<body>
<div id= "Header" class = "shared_elements">
<!--#divs don't really do anything, just for organization and targeting with css-->
<h1>The Adventure Begins</h1>
<span > this is my page. </span>
This is the beginning down my road of web development. It begins with one step...
</div>
</body>
</html>
Open your file in notepad and verify the contents before uploading the file.
If your see the file contents differently, do a "view source" in the the browser to see the contents.

HTML: How show a dynamic icon and a link to a remote Web site

I have a main web site www.asite.com and some secondary www.bsite.com, www.csite.com, www.dsite.com, ...
In a HTML page of www.asite.com I'll publish some icons that are the screenshot of the actual home pages of www.bsite.comm www.csite.com, www.dsite.com, ...
In fact the icons has to be the screenshots of secondary sites home page.
For example, clicking on the icon provided by www.asite.com the user is transferred to www.bsite.com or other secondary site.
In definitive, the www.asite.com become the dynamic index of multiple remote web sites (www.bsite.com, www.csite.com, www.dsite.com, ...)
Thank you in advance for some advice
Ivano C.
To make images into links, your code should look something like this:
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<a href="[address of site 1]">
<img src="[location of image]" alt="[some text describing the image]" />
</a>
<a href="[address of site 2]">
<img src="[location of image]" alt="[some text describing the image]" />
</a>
</body>
</html>
The is the link and the is the image.
I think this is what you're looking for, but if not, please tell me.

HTML I cannot load up image?

My image wont load up on page? I am not sure what is going on here, i have made many websites uptil now, but I think i made a mistake in my code. I am trying to load up this image, but it wont! :c
Here is the code:
<!DOCTYPE html>
<html>
<head>
<title>Error 404</title>
</head>
<body>
<h1>Oops!</h1>
<p>What you have just encountered is Error 404. This means that the page you were trying was not found. Try checking the <abbr title="Uniform Resource Locator">URL</abbr> for any mistakes. Even a small typo counts.</p>
<p>If that doesn't work, we have provided a map of the site below. Click on anyone of the pages and you will be magically directed there.</p>
<?php
include 'sitemap.php';
?>
<hr />
<p align="middle">Your IP address is <?php echo $_SERVER['REMOTE_ADDR']; ?>. You are visiting <b>danishhumair.base.pk</b>.</p>
<img src="advertisement.png" />
</body>
</html>
I can show you a picture of my files too.
if you are using Adblock try to disable it and reload the page, with that name, any advertisement block extension will stop the image from loading.
Browser problem see extensions

<title> tag isn't showing up on the web page

I was watching tutorials about html for beginners and tried to make a simple html file.
when I open this on google chrome the body "hello" is showing up but the title part "first page" doesn't. Did I type something wrong? thanks in advance for your response.
//I apologies for those of you who already answered this. I now see that I have made a mistake on explaining my problem. I meant to show it as a header not title. I already got the answer from the given answers//
<html>
<head>
<title> first page </title>
</head>
<body>
hello
</body>
</html>
Where do you expect title to be shown?
Title is what usually is displayed in the tab bar of your browser, or as text in your window switcher in your operating system. It does not show up inside your webpage.
Your markup seems to be correct, just look for the title in the browser window.
If you meant to make a title (in the meaning of a large text displaying in your website) one way of doing this is to, below your body-tag, write
<h1>Title here</h1>.
<title> is not showing in web page; it is shown in Tab / Window's title.
Suggested to learn the basic HTML structure first.
i think you want a header
<html>
<head>
<title>my page </title>
</head>
<body>
<h1> first page </h1>
hello
</body>
</html>
I learned that the title is the meta tag (the SEO bits), and the H1 is what shows up on the page. So if you'd like both to be the same, example: Things I've Learned is the title and the header of your website, you'd repeat the line.
<html>
<head>
<title>Things I've Learned</title>
</head>
<body>
<h1>Things I've Learned</h1>
<p>These are the things</p>
</body>
</html>
VIA QUORA:
"The key difference between these tags is where their content appears. That difference impacts how search engines and web surfers analyze your page. Title Tag: The Title Tag is known as a meta tag. ... Because it displays the largest text, the H1 Header tag is often used to create a title at the top of the page."
More on how to optimize titles for search engines here.