-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
124 lines (104 loc) · 3.81 KB
/
header.php
File metadata and controls
124 lines (104 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<link href="fontawesome-free-6.4.0-web/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="hlo.css">
<link rel="icon" href="favicon.png" type="image/icon">
<style>
* {
margin: 0;
padding: 0;
font-family: poppins;
}
#header {
background-color: #ba160c;
display: flex;
flex-direction: row;
height: 190px;
padding: 20px 20px;
}
#header img {
margin-left: 20px;
}
#header .head-inner {
margin-left: 40px;
padding-right: 80px;
}
.head-inner .name {
color: #ffffff !important;
padding-top: 20px;
font-size: 30px;
font-weight: 500;
line-height: 0.4;
}
.head-inner .name2 {
color: #faffff !important;
font-size: 36px;
font-weight: 530;
letter-spacing: 1px;
}
.head-inner .college-adr {
color: #fcf79e !important;
font-size: 20px;
font-weight: 540;
font-style: italic;
letter-spacing: 1px;
line-height: 0.5;
padding-bottom: 5px;
padding-left: 8px;
}
.head-inner .colllege-affliation {
color: #fcf79e !important;
font-size: 20px;
font-weight: 540;
font-style: italic;
letter-spacing: 1px;
padding-left: 8px;
}
#google_translate_element .goog-te-gadget-simple {
z-index: 999;
height: 30px;
background-color: #fffdd0;
border-left: none;
border-top: none;
border-radius: 5px;
border-right: none;
border-bottom: none;
display: inline-block;
padding-top: 2px;
padding-bottom: 2px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="header">
<div>
<a href="index.php"><img src="image/logo3.png" width="190px" /></a>
</div>
<div class="head-inner">
<div class="name">Mai Bhago</div>
<div class="name2">Government Polytechnic College For Girls</div>
<div class="college-adr">(Majitha road, Amritsar)</div>
<div class="colllege-affliation"><i>Affiliated with PSBTE & IT, Chandigarh & AICTE, New Delhi.</i></div>
</div>
<div id="google_translate_element">
</div>
<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en',
includedLanguages: 'en,pa,hi,ko,bn,mr,gu,zh-TW,fr,ur',
layout: google.translate.TranslateElement.InlineLayout.SIMPLE
}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</div>
</body>
</html>