Я работаю над веб-сайтом на HTML5 и CSS3, и мне интересно, есть ли способ взять ответы пользователя и экспортировать их в электронную таблицу Microsoft Excel. Я уже пробовал использовать VBScript, но я бы предпочел другой способ, поскольку VBScript не работает в большинстве современных браузеров. Я хотел бы внешний файл, потому что я хочу эту форму внизу нескольких страниц. Lol не против того, что сайт сделан на.
nav { background-color: #65bbe9;
margin-top: 0px;
padding-bottom: 0px;
border: 3px solid #000000;
}
#wrapper { margin-left: auto;
margin-right: auto;
width: 80%;
min-width: 960px;
background-color: #ffffff;
-webkit-box-shadow: 5px 5px 5px #000033;
-moz-box-shadow: 5px 5px 5px #000033;
box-shadow: 5px 5px 5px #000033;
font-family: 'Akzidenz-Grotesk'
}
#content { border: 3px solid #000033;
padding-left: 10px;
padding-right: 10px
}
body { background-color: #aceaff;
}
footer { font-style: italic;
font-family: 'Rabiohead';
font-size: 125%
}
@font-face { font-family: 'Rabiohead';
src: url('rabiohead.ttf');
}
@font-face { font-family: 'Akzidenz-Grotesk';
src: url('Akzidenz-Grotesk.ttf');
}
h2 { font-family: 'Rabiohead';
font-weight: bold;
font-size: 40px;
margin-top: 5px;
margin-bottom: 0px;
margin-left: 10px;
}
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>Dear Evan Hansen - The Animated Film</title>
<meta charset="UTF-8">
<link href="hansen.css" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<nav>
<img src="logo.gif" height="100" width="155.56">
<a href="index.html"><img src="homeselection.gif" height="100" width="155.56"></a>
<a href="what.html"><img src="what.gif" height="100" width="155.56"></a>
<a href="cast.html"><img src="cast.gif" height="100" width="155.56"></a>
<a href="release.html"><img src="release.gif" height="100" width="155.56"></a>
<a href="work.html"><img src="work.gif" height="100" width="155.56"></a>
</nav>
<div id="content">
<h2>Dear Evan Hansen: The Animated Film</h2>
<p>
The broadway musical "<i>Dear Evan Hansen</i>" is being brought to your screen! When our cast read the novel
created after the musical was released, they fell in love with this powerful story. This animation is not released yet, and
does not have any connections to <i>Universal Studios</i>, who currently have rights to the creation of a "<i>Dear Evan Hansen</i>"
movie. If you're excited, head to our YouTube channel linked below and consider subscribing, so when an official trailer is released,
you will be one of the first ones to know about it, or fill out the newsletter form to add your name to our email list.
</p>
<br>
<br>
<h2>Join Our Newsletter!</h2>
<form method="get">
<br>
Email: <input type="email" name="email" id="email"> <input type="submit" value="Sign Up">
</form>
<br>
<br>
<footer>
Copyright © Alex Gutowski
<br>
<a href="mailto:alexgutowski@gmail.com">alexgutowski@gmail.com</a>
<br>
All Rights Reserved
</footer>
</div>
</div>
</body>
</html>
Заранее спасибо!
Алекс Гутовски