-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (93 loc) · 3.99 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Homepage - Online Webs</title>
<link rel="icon" type="image/x-con" href="images/logo.png">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Tips for Web Development">
<meta name="keywords"
content="html, css, coding, code, web, web-development, website, site, online, online webs, online-webs, onlinewebs">
<link rel="stylesheet" href="Homepage.css">
</head>
<body onload="navBarLoad('index')">
<div class="nav-header">
<a href="index.html" class="logo">
<img class="img" src="images/logo.png"><span class="logo-text">Online Webs</span>
</a>
<div class="nav-links">
</div>
</div>
<div class="body">
<div class="header-home">
<div class="text-header-home">
Online Webs
<h2>The place for Web Development and Coding</h2>
</div>
<div class="container-home">
<div class="card-home">
<h3>1 Person</h3>
<p>Made this website</p>
</div>
<div class="card-home">
<h3>2 Months</h3>
<p>In learning HTML, CSS, and Javascript</p>
</div>
<div class="card-home">
<h3>500+</h3>
<p>Page requests on Online Webs W3Spaces(Notably by self requests)</p>
</div>
</div>
</div>
<div class="header-end-home">
<h1 class="gradient-text-home">Our Tutorials</h1>
<div class="container style2 center">
<div class="no-deco card style1 html">
<h2>HTML</h2>
<p>The language for building web pages</p>
<a href="html-about.html" class="no-deco button color1">Learn HTML</a>
<div class="code-text">
<DOCTYPE html><br>
<html><br>
<body><br><br>
<h1>Hello World</h1><br>
<p id="demo">This is a paragraph.</p><br><br>
</body><br>
</html>
</div>
</div>
<div class="no-deco card style1 css">
<h2>CSS</h2>
<p>The language for styling web pages</p>
<a href="css-about.html" class="no-deco button color1">Learn CSS</a>
<div class="code-text">
body {<br>
background-color: lightblue;<Br>
}<br><br>
h1 {<br>
background-color: red;<br>
}<br><br>
p {<br>
color: blue;<br>
font-weight: 200;<br>
}<br>
</div>
</div>
<div class="no-deco card style1 js">
<h2>Javascript</h2>
<p>The language for programming web pages</p>
<a href="js-about.html" class="no-deco button color1">Learn Javascript</a>
<div class="code-text">
const paragraph = document.getElementById("demo");<br><br>
paragraph.addEventListener("click", function() {<br>
paragraph.innerHTML = "Paragraph changed.";<br>
})<br>
</div>
</div>
</div>
<br>
</div>
</div>
<script src="load-page.js"></script>
</body>
</html>