Your bio:
Talk title:
Talk abstract:
<textarea id="talk-abstract" placeholder="Summarize in a single paragraph the major aspects of the proposal you want to present." rows="3" maxlength="512"></textarea>Submit
(Submit opens a prepopulated mail compose window. You may customize your submission at this point before sending it.)
function addSubmitButtonListener() {
document.querySelector('#submit-button').onclick = () => {
const name = document.querySelector('#speaker-name').value;
const bio = document.querySelector('#speaker-bio').value;
const title = document.querySelector('#talk-title').value;
const abstract = document.querySelector('#talk-abstract').value;
const subject = `[workshop proposal] ${title}`;
const body = `Hi Program Committee,
I would like to submit a talk proposal for the W3C Beihang Event.
Name: ${name}
Bio: ${bio}
Talk title: ${title}
Talk abstract: ${abstract}
Best regards,\n${name}; window.open(
mailto:[email protected]?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`);
};
}
})();
</script>
这里可以使用简单的 Markdown。Markdown is a lightweight and easy-to-use syntax for styling your writing. It includes conventions for
Syntax highlighted code block
# Header 1
## Header 2
### Header 3
- Bulleted
- List
1. Numbered
2. List
**Bold** and _Italic_ and `Code` text
[Link](url) and ![Image](src)
For more details see GitHub Flavored Markdown.
Your Pages site will use the layout and styles from the Jekyll theme you have selected in your repository settings. The name of this theme is saved in the Jekyll _config.yml
configuration file.
Having trouble with Pages? Check out our documentation or contact support and we’ll help you sort it out.