diff --git a/app.js b/app.js new file mode 100644 index 0000000..3de5455 --- /dev/null +++ b/app.js @@ -0,0 +1,12 @@ +var username = "my name" +var message = 'hello would' +alert('jhone Doe') +alert('15 year old') +alert('certified mobile application devalopment') +alert('PLZZA\rPLZZ\rPLZ\rPL\rP') +var email = 'My email address is example@example.com' +alert(email) +var book = 'A smarter\rway to learn javascript' +alert('I am trying to learn from the book ' + book) +var text = 'Yah! I can write HTML conrtent throught javascript' +document.write(text) \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..fd6d775 --- /dev/null +++ b/index.html @@ -0,0 +1,23 @@ + + + + + + Variables for Strings + + + +
+
+

Variables for Strings

+
+
+
+ Assinment # 2
+ JAVASCRIPT +
+
+ + + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..6d0101b --- /dev/null +++ b/style.css @@ -0,0 +1,38 @@ +* { + box-sizing: border-box; + padding: 0%; + margin: 0%; +} +h1 { + text-transform: uppercase; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: center; + align-items: center; + font-size: xxx-large; + margin: 100px; + color: blue; +} +.blue { + background-color: blue; + width: 100%; + height: 100px; +} +.blue-buttom { + background-color: blue; + width: 100%; + height: 300px; + display: flex; + justify-content: flex-end; + flex-direction: column; + align-items: center; + gap: 10px; +} +.heading { + width: 100%; + height: 200px; +} +.para { + color: #fff; +}