This repository was archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (92 loc) · 4.21 KB
/
index.html
File metadata and controls
99 lines (92 loc) · 4.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html>
<head>
<title>PHP Tutorial</title>
<link rel="icon" href="https://avatars.githubusercontent.com/u/76637730?v=4" type="image/gif" sizes="16x16" style="border-radius: 50%;">
<link rel="stylesheet" href="https://app.staticsave.com/root/root.css">
<link rel="stylesheet" href="https://app.staticsave.com/root/noselect.css">
<link rel="stylesheet" href="https://app.staticsave.com/root/tutorial.css">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://kit.fontawesome.com/c5266611a7.js" crossorigin="anonymous"></script>
</head>
<body>
<nav id="customNav" class="navbar navbar-expand-sm bg-light fixed-top">
<div class="container-fluid justify-content-start">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#section1">
<img id="hrtLogo" src="https://avatars.githubusercontent.com/u/76637730?v=4" draggable="false" width="50" style="border-radius:50%; filter: brightness(1.2);"/>
</a>
</li>
</ul>
</div>
</nav>
<h1 class="noSelect" style="margin-top:85px">PHP Basics </h1>
<h2 class="noSelect" style="margin:30px; text-align: center;">Getting Started with PHP </h2>
<div class="all">
<div class="dvs">
<h1>Basics</h1>
<div class="cntnt"> <object data="./1. Basics.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
This is PHP! <br>Addition is: 9<br><a>PHP is Fun!</a>
</div>
<div class="dvs">
<h1>Array</h1>
<div class="cntnt"> <object data="./2. Array.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
array(3) { [0]=> string(5) "Volvo" [1]=> string(3) "BMW" [2]=> string(6) "Toyota" }<br/> Alfa Romeo
</div>
<div class="dvs">
<h1>Classes</h1>
<div class="cntnt"><object data="./3. Class.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
My car is a black Volvo!<br>My car is a red Toyota!
</div>
</div>
<h2 class="noSelect" style="margin:30px; text-align: center;">Values </h2>
<div class="all">
<div class="dvs">
<h1>Constants</h1>
<div class="cntnt"><object data="./5. Constants.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
Welcome to PHP!Welcome to PHP!
</div>
<div class="dvs">
<h1>String</h1>
<div class="cntnt"><object data="./4. String.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
!dlrow olleH<br>6<br>Hello Dolly!<br>
</div>
<div class="dvs">
<h1>Numbers</h1>
<div class="cntnt"><object data="./9. Numbers.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
bool(true) -200150 6.7 8 1 <br/>0 517999016 <br/>21
</div>
</div>
<h2 class="noSelect" style="margin:30px; text-align: center;">Looping </h2>
<div class="all">
<div class="dvs">
<h1>Loop</h1>
<div class="cntnt"><object data="./8. Loops.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
The number is: 1 <br>The number is: 2 <br>The number is: 3 <br>The number is: 7 <br>The number is: 8 <br>The number is: 9 <br>
</div>
<div class="dvs">
<h1>If-else</h1>
<div class="cntnt"><object data="./6. If-else.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
Have a good day!Have a good day!
</div>
<div class="dvs">
<h1>Switch</h1>
<div class="cntnt"><object data="./7. Switch.php" font-size="25" width="300" height="300"></object></div>
<p class="output">Output</p>
Your favorite color is red!
</div>
</div>
</body>
</html>