Skip to content

Commit 1a4c87d

Browse files
author
Juliana
committed
*
1 parent 2a48279 commit 1a4c87d

File tree

4 files changed

+51
-3
lines changed

4 files changed

+51
-3
lines changed

index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ <h4>bin</h4>
109109
</p>
110110
<p>
111111
If prefix “0b” is desired or not, you can use either of the following ways:
112-
112+
113113
<table>
114114
<code>
115115
>>> format(14, '#b'), format(14, 'b')
@@ -121,11 +121,18 @@ <h4>bin</h4>
121121
</p>
122122
</section>
123123
<section id="built-in-constants" class="main-section">
124-
<h3></h3>
124+
<h3>Built-in Constants</h3>
125+
<p>A small number of constants live in the built-in namespace. They are:</p>
126+
<br>
127+
<h4>False</h4>
128+
<p> The false value of the <b>bool</b> type. Assignments to <i>False</i> are illegal and raise a SyntaxError.
129+
</p>
125130
</section>
126131
<section class="main-section"></section>
127132
</main>
128133

134+
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
135+
129136
</body>
130137

131138
</html>

package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "doc-page",
3+
"version": "1.0.0",
4+
"description": "documentation example page project",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "test-me"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/zerozero-username/doc-page.git"
12+
},
13+
"keywords": [
14+
"doc-page",
15+
"project",
16+
"freecodecamp",
17+
"html",
18+
"css",
19+
"sass",
20+
"scss"
21+
],
22+
"author": "zerozero-username",
23+
"license": "ISC",
24+
"bugs": {
25+
"url": "https://github.com/zerozero-username/doc-page/issues"
26+
},
27+
"homepage": "https://github.com/zerozero-username/doc-page#readme"
28+
}

scss/style.css.map

Lines changed: 13 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/style.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@import 'node_modules/susy/sass/_susy.scss'

0 commit comments

Comments
 (0)