html
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
<!DOCTYPE html>
<html>
<head></head>
<body>
<!--please this is one of my 65 codes here in sololearn I made this one public because I need help. My question is without using my computer just with my cellphone is it possible to make a picture on my cell phone as the header of this page? If yes how do I upload it? How do I do I go about it? Please I need a comprehensive answer. Thank you in advance as you like and drop your answer in the comment box-->
<ul>
<li class="dropdown"> <a href="#"class="dropbtn">Menu</a>
<div class="dropdown-content">
<a href="#">Learn web development</a>
<a href="#">Create a website</a>
<a href="#">Order for service</a>
<a href="#">Frequently Asked Questions</a>
<li><a href="#home">Home</a></li>
<li><a class="active" href="#news">About</a></li>
<li><a href="#home">Contact</a></li>
<li><a href="#">Login</a></li>
</div>
</li>
</ul>
<h4>
Enter to Rename, Shift+Enter to Preview
css
css
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
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.dif li {
float:none;
}
li {
float: left;
}
li a, .dropbtn {
display: inline-block;
color: white;
text-align: center;
padding: 10px 8px;
text-decoration: none;
}
li a:hover, .dropdown:hover .dropbtn {
background-color: #48d1cc;
Enter to Rename, Shift+Enter to Preview
js
js
1
alert("please this is one of my 65 codes here in sololearn I made this one public because I need help. My question is without using my computer just with my cellphone is it possible to make a picture on my cell phone as the header of this page? If yes how do I upload it? How do I do I go about it? Please I need a comprehensive answer. Thank you in advance as you like and drop your answer in the comment box")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run