-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
153 lines (144 loc) · 6.35 KB
/
Copy pathindex.html
File metadata and controls
153 lines (144 loc) · 6.35 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical-8</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<div id="container">
<div id="header">
<input type="checkbox" id="chk" />
<label for="chk" class="show-btn">
<i class="fa fa-bars"></i>
</label>
<ul class="menu">
<li><a href="#top">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#circle-container">Team</a></li>
<li><a href="#Technologies">Technologies</a></li>
<li><a href="#contact">contact</a></li>
<label for="chk" class="hide-btn">
<i class="fa fa-times"></i>
</label>
</ul>
</div>
<a name="top"></a>
<div id="banner">
<h2>PRACTICAL - 8</h2>
</div>
<div id="circle-container">
<h1>Team Members</h1>
<div class="circle">
<img src="bill.jpeg" alt="" />
</div>
<div class="circle">
<img src="musk.jpeg" alt="" />
</div>
<div class="circle">
<img src="mark.jpg" alt="" />
</div>
<div class="circle">
<img src="page.jpeg" alt="" />
</div>
</div>
<div id="sec2-container">
<a name="about"></a>
<h1>About Us</h1>
<div id="left-side">
<div class="left-content">
<div id="left-p">
<h2>About Projects</h2>
<p>
Construction project Construction-bandw.jpg A project is a
series of related a tasks which when they are carried in the
correct order will lead to the completion of the project.
Projects are temporary, generally resulting in the creation of a
tangible product or outcome. This is as opposed to a programme,
which is a series of interrelated projects that may be carried
out repeatedly or continuously in order to support an ongoing
process. For more information, see Project v programme. A
construction project, sometimes just referred to as a ‘project’,
is the organised process of constructing, renovating,
refurbishing, etc. a building, structure or infrastructure. The
project process typically starts with an overarching requirement
which is developed through the creation of a brief, feasibility
studies, option studies, design, financing and construction.
</p>
</div>
</div>
</div>
<div id="right-side">
<div class="artical" id="p1">
<h2>Project-1</h2>
</div>
<div class="artical" id="p2">
<h2>Project-2</h2>
</div>
<div class="artical" id="p3">
<h2>Project-3</h2>
</div>
</div>
</div>
<div id="grid-container">
<a name="Technologies"></a>
<h1>Technologies Used</h1>
<div class="grid">
<img src="html.png" alt="" />
<h4>Introduction to HTML</h4>
<p>
The HyperText Markup Language, or HTML is the standard markup
language for documents designed to be displayed in a web browser. It
can be assisted by technologies such as Cascading Style Sheets (CSS)
and scripting languages such as JavaScript.
</p>
<a href="https://sanidhya12345.github.io/practical-5/html.html">Read More</a>
</div>
<div class="grid">
<img src="css.png" alt="" />
<h4>Introduction to CSS</h4>
<p>
Cascading Style Sheets (CSS) is a style sheet language used for
describing the presentation of a document written in a markup
language such as HTML. CSS is a cornerstone technology of the World
Wide Web, alongside HTML and JavaScript.
</p>
<a href="https://sanidhya12345.github.io/practical-5/css.html">Read More</a>
</div>
<div class="grid">
<img src="js.png" alt="" />
<h4>Introduction to JavaScript</h4>
<p>
JavaScript (/ˈdʒɑːvəˌskrɪpt/), often abbreviated as JS, is a
programming language that conforms to the ECMAScript
specification.JavaScript is high-level, often just-in-time compiled,
and multi-paradigm. It has curly-bracket syntax, and first-class
functions.
</p>
<a href="https://sanidhya12345.github.io/practical-5/js.html">Read More</a>
</div>
<div class="grid">
<img src="boot.png" alt="" />
<h4>Introduction to Bootstrap</h4>
<p>
Bootstrap is a free and open-source CSS framework directed at
responsive, mobile-first front-end web development. It contains CSS-
and (optionally) JavaScript-based design templates for typography,
forms, buttons, navigation, and other interface components.
</p>
<a href="https://sanidhya12345.github.io/practical-5/bootstrap.html">Read More</a>
</div>
</div>
<a name="contact"></a>
<h1>Contact</h1>
<div id="footer">
<p>
<a href="#top">Back to top</a>
</p>
</div>
</div>
</body>
</html>