survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
22 lines (18 loc) • 981 B
HTML
<html lang="en">
<head>
<title>Welcome to React</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://unpkg.com/react@16.5.0/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16.5.0/umd/react-dom.development.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.23/browser.js"></script>
<script src="./node_modules/survey-core/survey.core.js"></script>
<link rel="stylesheet" href="./node_modules/survey-core/survey-core.css" />
</head>
<body spellcheck="false">
<div id="surveyElement" style="position: fixed; top: 0; left: 0; bottom: 0; right: 0;"></div>
<div id="surveyResultElement"></div>
<script type="text/babel" src="./index.js"></script>
<script defer src="survey-react-ui.js"></script></body>
</html>