-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (131 loc) · 5.92 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header class="nav">
<nav class="nav1">
<h1 class="nav2">
FIRST
</h1>
<div class="nav3">
<ul>
<li> <a href="#">Home</a> </li>
<li> <a href="#about">about</a></li>
<li> <a href="#html">HTML</a></li>
<li> <a href="#css">CSS</a></li>
<li> <a href="#java">JAVA</a></li>
<li> <a href="#">skill</a></li>
<li> <a href="#">contect</a></li>
</ul>
</div>
</nav>
<div class="first">
<h1 class="first1">
FIRST WEBSITE ON THE WEB.
</h1>
<p class="first2">
I AM A ENGINEERING STUDENT.
</p>
<button class="first3">
SUBMIT
</button>
</div>
</header>
<section class="qa">
<div>
<h1 class="second1">
SRM UNIVERSITY.
</h1>
<p class="second2">
In most of the world, a college may be a high school or secondary school,
a college of further education, a training institution that awards trade qualifications,
a higher-education provider that does not have university status
(often without its own degree-awarding powers),
or a constituent part of a university.
</p>
</div>
</section>
<div id="about">
<div class="third">
<h1 class="thirda">ABOUT</h1>
<h1 class="third1">
I known that all language.
All language are related to the computer.
</h1>
<p class="third2">
<img src="img\op.jpg">
</p>
</div>
</div>
<div id="html">
<div class="four">
<div >
<h1 class="four1"><em>HTML</em></h1>
</div>
<div class="four2">
<p id="four3">
<img src="img\HTML.png" alt="logo">
</p>
<p class="four3">
HTML stands for Hypertext Markup Language. It allows the user to create and structure sections,
paragraphs, headings, links, and blockquotes for web pages and applications.
HTML is not a programming language,
meaning it doesn’t have the ability to create dynamic functionality.
Instead, it makes it possible to organize and format documents,
similarly to Microsoft Word.
</p>
</div>
</div>
</div>
<div id="css">
<div class="five">
<div >
<h1 class="five1"><em>CSS</em></h1>
</div>
<div class="five2">
<p id="five3">
<img src="img\oiu.jpg" alt="logo">
</p>
<p class="five3">
CSS handles the look and feel part of a web page. Using CSS,
you can control the color of the text, the style of fonts,
the spacing between paragraphs, how columns are sized and laid out,
what background images or colors are used,
layout designs,
variations in display for different devices and screen sizes as well as a variety of
other effects.
CSS is easy to learn and understand but it provides powerful control over the presentation of
an HTML document.Most commonly,CSS is combined with the markup languages HTML or XHTML.
</p>
</div>
</div>
</div>
<div id="java">
<div class="six">
<div >
<h1 class="six1"><em>JAVA</em></h1>
</div>
<div class="six2">
<p id="six3">
<img src="img\java2.png" alt="logo">
</p>
<p class="six3">
Our core Java programming tutorial is designed for students and working professionals.
Java is an object-oriented, class-based, concurrent, secured and general-purpose computer-programming language.
It is a widely used robust technology.
Java was developed by Sun Microsystems (which is now the subsidiary of Oracle) in the year 1995.
James Gosling is known as the father of Java. Before Java, its name was Oak.
Since Oak was already a registered company, so James Gosling and his team changed the Oak name to Java.
</p>
</div>
</div>
<!-- background: linear-gradient(35deg ,#ccffff , #ffcccc); -->
</div>
</body>
</html>