-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpractical-6.html
36 lines (36 loc) · 1.58 KB
/
practical-6.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practical-6</title>
<link rel="stylesheet" href="practical-6.css">
</head>
<body>
<h1>Practical-6: Creating Layout Using CSS Layout Property</h1>
<hr>
<!-- code for box-1 -->
<div class="container">
<div class="box">
<img src="images/html_img.png" alt="HTML image">
<p>HTML stands for Hyper Text Markup Language. It is used to design web pages using markup language ...</p>
<a href="introduction_HTML.html" target="_blank">Read more</a>
</div>
<div class="box">
<img src="images/css_img.jpg" alt="CSS image">
<p>Cascading Style Sheets, fondly referred to as CSS, is a simply designed language intended ... </p>
<a href="introduction_CSS.html" target="_blank">Read more</a>
</div>
<div class="box">
<img src="images/javascript_img.jpg" alt="Javascript image">
<p>JavaScript is a lightweight, cross-platform and interpreted scripting language. It is well-known for ...</p>
<a href="introduction_JS.html" target="_blank">Read more</a>
</div>
<div class="box">
<img src="images/bootstrap_img.jpg" alt="Bootstrap image">
<p>Bootstrap is a free and open-source tool collection for creating responsive websites and web applications ...</p>
<a href="introduction_bootstrap.html" target="_blank">Read more</a>
</div>
</div>
</body>
</html>