일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CSS
- ERWin
- orcle
- 테이블
- 코딩
- 객제지향
- DB
- 프로그래밍
- html
- 객체지향
- Java
- 자바
- Project
- 오라클
- 객제지향프로그래밍
- jsp
- squery
- web
- UI
- 웹
- 웹프로그래밍
- 데이터베이스
- 공부를열심히
- 공부
- 객체지향프로그래밍
- 주말이다..
- 프로젝트
- Oracle
- javascript
- sql
Archives
- Today
- Total
햄찌개
CSS - a테그 속성 연습 본문
<!DOCTYPE html>
<html>
<head>
<style>
a:link{
color:black;
font-size: 100px;
}
a:visited{
color:yellow;
}
a:hover{
color:red;
font-size: 10px;
}
a:actived{
color:blue;
}
</style>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<a href = "http://www.google.com">구그그그그그그그글</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
#menu01 {
height: 500px;
background-color: #9BCDC4;
margin-left: 20px;
margin-top:50px;
padding: 20px;
text-decoration: none;
}
#menu01:hover {
text-decoration:underline;
font-size: 100px;
}
#menu02 {
height: 500px;
background-color: #FFF111;
margin-left: 20px;
margin-top:50px;
padding: 20px;
text-decoration: none;
}
#menu02:hover {
text-decoration:underline;
font-size: 100px;
}
#menu03 {
height: 500px;
background-color: #33864C;
margin-left: 20px;
margin-top:50px;
padding: 20px;
text-decoration: none;
}
#menu03:hover {
text-decoration:underline;
font-size: 100px;
}
#menu04 {
height: 500px;
background-color: #FF4821;
margin-left: 20px;
padding: 20px;
margin-top:50px;
text-decoration: none;
}
#menu04:hover {
text-decoration:underline;
font-size: 100px;
}
ul li{
list-style: none;
float: left;
}
</style>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<br>
<br>
<ul>
<li><a id="menu01" href="">홍길동</a></li>
<li><a id="menu02" href="">김두한</a></li>
<li><a id="menu03" href="">강감찬</a></li>
<li><a id="menu04" href="">세종대왕</a></li>
</ul>
</body>
</html>
'UI설계 및 구현 -웹프로그래밍' 카테고리의 다른 글
JAVASCRIPT - 연습 (0) | 2020.09.21 |
---|---|
CSS- 색션 연습 (0) | 2020.09.18 |
CSS - margin, padding 연습 (0) | 2020.09.17 |
CSS연습 - 속성들 (0) | 2020.09.16 |
CSS 연습 - 외부, 내부 (0) | 2020.09.16 |