Skip to content

Instantly share code, notes, and snippets.

@mostaphaRoudsari
Last active August 26, 2019 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mostaphaRoudsari/38b14a428458314be20fe934c45ef6ac to your computer and use it in GitHub Desktop.
Save mostaphaRoudsari/38b14a428458314be20fe934c45ef6ac to your computer and use it in GitHub Desktop.
html_basics
license: mit

Built with blockbuilder.org

This is a basic example to get started with web development

<header>
</header>
<style>
p {
font-size: 27px;
}
#first-paragraph {
font-size: 50px;
}
.fancy {
color: red;
}
</style>
<body>
<div class="fancy">
<p id="first-paragraph" style="color:blue;">
this is my text.
</p>
</div>
<p id="second-paragraph">
I'm here for the d3 workshop
</p>
<!-- let's add a circle -->
<svg height="100" width="119">
<circle cx="50" cy="50" r="40" stroke="rgb(255, 99, 71)" stroke-width="12" fill="red" />
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment